0

[2]中:导入SimpleCV

ImportError                               Traceback (most recent call last)
C:\Users\root\<ipython-input-2-d3da1d75bea1> in <module>()
----> 1 import SimpleCV

C:\Users\root\build\bdist.win32\egg\SimpleCV\__init__.py in <module>()

C:\Users\root\build\bdist.win32\egg\SimpleCV\base.py in <module>()

C:\Python27\lib\site-packages\scipy\spatial\__init__.py in <module>()
     25 from kdtree import *
     26 from ckdtree import *
---> 27 from qhull import *
     28
     29 __all__ = filter(lambda s:not s.startswith('_'),dir())

ImportError: DLL load failed: The specified module could not be found.

有谁知道我为什么会收到这个错误?这个 qhull 包是什么,我看不到如何为 python 安装它。它应该带有 scipy 吗?在使用 python 2.6 的另一台计算机上我没有遇到这个问题?

更新:我尝试重新安装 scipy 和同样的问题。我跟踪到 qhull.pyd 缺少依赖 DLL 的问题,它说 msvcr90.dll 丢失但我在我的 system32 文件夹中有它,但它在本地目录中查找它?有谁知道如何改变这个?

4

2 回答 2

0

看起来您机器上的 SciPy 安装出现了问题,我建议使用适当的版本http://sourceforge.net/projects/scipy/files/scipy/0.10.0/重新安装 scipy 。

请注意,SimpleCV 与 python 2.6 和 2.7 兼容,但不支持 Python 3.X。

于 2011-11-25T18:07:04.823 回答
-1

转到http://www.lfd.uci.edu/~gohlke/pythonlibs/

需要 Numpy- MKL

于 2012-01-22T21:43:07.777 回答