2013-07-23 127 views
0

我开始使用pythonocc我试图导入一些模块,并与下面的错误返回Pythonocc导入错误DLL加载失败

`  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位蟒蛇2.7.3 32位和pythonocc 0.5所有in one

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

回答

0

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

试试这个link

我建议得到蟒蛇的32位分布,这应该解决您的问题

+0

我有一个32位的Python安装 –

相关问题