【发布时间】:2011-11-24 22:11:35
【问题描述】:
在 [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 文件夹中有它,但它在本地目录中查找它?有人知道怎么改吗?
【问题讨论】: