0

当我尝试在 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.

解决此错误的最佳方法是什么?

提前致谢。

4

1 回答 1

1

(此处为 Spyder 开发人员)目前用户无法在应用程序内安装任何内容。我猜你将你的 slycot 模块从另一个解释器移动到我们的应用程序(因为numpy你提到的错误)。

使用应用程序中不存在的不同模块的正确方法是更改​​解释器的路径:

工具 > 首选项 > 控制台 > 高级设置 > Python 可执行文件

如果您使用系统 Python 安装了 slycot,则必须选择

/usr/bin/python

于 2013-05-24T20:32:15.070 回答