latest numpy & scipy - incompatible ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • robert

    #1

    latest numpy & scipy - incompatible ?

    I'm using latest numpy & scipy. What is this problem ? :
    >>import scipy.stats
    RuntimeError: module compiled against version 1000002 of C-API but this version of numpy is 1000009
    Traceback (most recent call last):
    File "<interacti ve input>", line 1, in ?
    File "C:\PYTHON23\Li b\site-packages\scipy\ stats\__init__. py", line 7, in ?
    from stats import *
    File "C:\PYTHON23\Li b\site-packages\scipy\ stats\stats.py" , line 191, in ?
    import scipy.special as special
    File "C:\PYTHON23\Li b\site-packages\scipy\ special\__init_ _.py", line 8, in ?
    from basic import *
    File "C:\PYTHON23\Li b\site-packages\scipy\ special\basic.p y", line 8, in ?
    from _cephes import *
    ImportError: numpy.core.mult iarray failed to import
    >>import numpy.core.mult iarray
    >>>
    >>import scipy
    >>scipy.__versi on__
    '0.5.1'
    >>numpy.__versi on__
    '1.0'
    >>>

    -robert
  • Robert Kern

    #2
    Re: latest numpy &amp; scipy - incompatible ?

    robert wrote:
    I'm using latest numpy & scipy. What is this problem ? :
    >
    >>>import scipy.stats
    RuntimeError: module compiled against version 1000002 of C-API but this version of numpy is 1000009
    The scipy binary available on sourceforge has not been recompiled for numpy 1.0.
    All you need to do is recompile, though, and everything will work.

    --
    Robert Kern

    "I have come to believe that the whole world is an enigma, a harmless enigma
    that is made terrible by our own mad attempt to interpret it as though it had
    an underlying truth."
    -- Umberto Eco

    Comment

    • Travis E. Oliphant

      #3
      Re: latest numpy &amp; scipy - incompatible ?

      robert wrote:
      I'm using latest numpy & scipy. What is this problem ? :
      >
      >>>import scipy.stats
      RuntimeError: module compiled against version 1000002 of C-API but this version of numpy is 1000009
      Traceback (most recent call last):
      File "<interacti ve input>", line 1, in ?
      File "C:\PYTHON23\Li b\site-packages\scipy\ stats\__init__. py", line 7, in ?
      from stats import *
      File "C:\PYTHON23\Li b\site-packages\scipy\ stats\stats.py" , line 191, in ?
      import scipy.special as special
      File "C:\PYTHON23\Li b\site-packages\scipy\ special\__init_ _.py", line 8, in ?
      from basic import *
      File "C:\PYTHON23\Li b\site-packages\scipy\ special\basic.p y", line 8, in ?
      from _cephes import *
      ImportError: numpy.core.mult iarray failed to import
      >>>import numpy.core.mult iarray
      >>>>
      >>>import scipy
      >>>scipy.__vers ion__
      '0.5.1'
      >>>numpy.__vers ion__
      '1.0'
      Download the 1.0rc2 binary until SciPy 0.5.2 which should be out in a
      few days. If you can recompile, SciPy yourself, then it will work fine
      with 1.0

      -Travis

      Comment

      Working...