0

我开始使用 pythonocc 我尝试导入一些模块并返回以下错误

   `     Traceback (most recent call last):
        File "<pyshell#0>", line 1, in <module>
        from OCC.gp import *
        File "C:\Python27\lib\site-packages\OCC\gp.py", line 28, in <module>
        _gp = swig_import_helper()
         File "C:\Python27\lib\site-packages\OCC\gp.py", line 24, in swig_import_helper
        _mod = imp.load_module('_gp', fp, pathname, description)
         ImportError: DLL load failed: The specified module could not be found.
   `

我正在使用 Windows 64 位 python 2.7.3 32bit 和 pythonocc 0.5 合二为一

上述问题的解决方案是什么?

4

3 回答 3

0

如果你有 64 位 python,它可能很难加载 32 位 Dll。

试试这个链接

我建议获得 32 位的 python 发行版,这应该可以解决您的问题

于 2013-07-23T15:27:10.387 回答
0

从此链接http://code.google.com/p/pythonocc/安装 pythonocc 0.6这应该可以正常工作

于 2013-08-14T09:16:40.750 回答
0

在以下链接中,您可以找到适用于 Python 2.7 的 pythonOCC: http ://code.google.com/p/pythonocc/downloads/list

链接于 2014 年 7 月 10 日测试

于 2014-07-10T23:23:52.610 回答