使用简单 cv 时出现奇怪的 ghull 错误

发布于 2024-12-18 02:10:21 字数 921 浏览 0 评论 0原文

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

In [2]: import 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.

Anyone know why am I getting this error? What is this qhull package, I don't see how to install this for python. It should come with scipy? On a different computer with python 2.6 I don't get this problem?

Update: I tried reinstalling scipy and same problem. I tracked the issue to that qhull.pyd is missing dependent DLLs, it is saying msvcr90.dll is missing but I have it in my system32 folder but it is lookign for it in the local directory? Anyone know how to change this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

や莫失莫忘 2024-12-25 02:10:21

您的计算机上安装的 SciPy 似乎出现问题,我建议使用适当的版本重新安装 scipy

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

It looks like something is up with the SciPy install on your machine, I would recommend re-installing scipy with the appropriate version http://sourceforge.net/projects/scipy/files/scipy/0.10.0/.

Note that SimpleCV is compatible with python 2.6 and 2.7, but doesn't have Python 3.X support.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文