成功安装后,IfxPy模块导入错误

时间:2019-08-23 08:35:30

标签: python

我在安装IfxPy时遇到问题。 操作系统是Windows 64位,并且运行了Python 3.7.4的64位版本。 从-https://pypi.org/project/IfxPy/#files点安装轮文件IfxPy-3.0.3-cp37-cp37m-win_amd64.whl后,解释程序的pip list命令或help(modules)命令显示模块已安装:

>>> help("modules") 
Please wait a moment while I gather a list of all available modules... IfxPy [...other modules...]

我试图找到模块的位置,并且是

>>> imp.find_module('IfxPy') (<_io.BufferedReader name='C:\\Python\\lib\\site-packages\\IfxPy.pyd'>,
'C:\\Python\\lib\\site-packages\\IfxPy.pyd', ('.pyd', 'rb', 3))

PATH环境变量包含上述路径。 但是,当我尝试从IDLE解释器导入模块时,出现错误:

>>> import IfxPy 
Traceback (most recent call last):  
 File "<pyshell#6>", line 1, in <module>
     import IfxPy ImportError: DLL load failed: The specified module could not be  found.

该错误的潜在根源是什么,如何解决?感谢您的帮助。

0 个答案:

没有答案