我想从网络位置使用PyQt4。
我在客户端安装了Python 2.6.4 x32,并将PyQt4 x32模块保存在网络共享中(对于Ex:“\ share \ Pyton_Modules \ x32”)。
打开python的时候我做了如下工作
import sys
sys.path.append(r'\\share\Pyton_Modules\x32')
from PyQt4 import QtGui
一切顺利。
但我在客户端测试python 2.6.4 x64的相同方式,并将PyQt4 x64保存在网络共享中(对于Ex:“\ share \ Pyton_Modules \ x64”)
当打开python时,我按照以下方式执行操作
import sys
sys.path.append(r'\\share\Pyton_Modules\x64')
from PyQt4 import QtGui
我得到以下错误
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
from PyQt4 import QtGui
ImportError: DLL load failed: The specified module could not be found.
答案 0 :(得分:0)
我找到了解决问题的解决方案。
我将所有文件从PyQt4\bin
移至PyQt4
,并且没有任何问题......
希望这可以帮助某人。