当我尝试在 spyder(2.2 版)中导入 slycot 模块时,出现以下错误:
RuntimeError: module compiled against API version 7 but this version of numpy is 6
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Applications/Spyder.app/Contents/Resources/lib/python2.7/slycot/__init__.py",
line 4, in <module>
from slycot.analysis import ab01nd,ab05md,ab05nd,ab07nd,ab08nd, ab09ad
File "/Applications/Spyder.app/Contents/Resources/lib/python2.7/slycot/analysis.py",
line 21, in <module>
from slycot import _wrapper
ImportError: numpy.core.multiarray failed to import
现在,当我通过终端在 python shell 中导入 slycot 时,完全没有问题。我认为通过终端没有问题的原因是我最近安装了numpy 1.7.1。另一方面,Spyder 仍然使用 numpy 1.6.2.,因此出现错误。
我试图在 spyder 中更改 numpy 版本,但到目前为止还没有奏效。当我用最近安装的 numpy(7) 更改我的 spyder lib 中的 numpy(6) 文件夹时,我收到以下错误(在 spyder 中):
ImportError: Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python intepreter from there.
解决此错误的最佳方法是什么?
提前致谢。