[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 文件夹中有它,但它在本地目录中查找它?有谁知道如何改变这个?