pywintypes.error - 使用pyinstaller创建单文件捆绑可执行文件

时间:2017-06-13 15:31:10

标签: python windows pyinstaller

在以下目录中运行Powershell:

pyinstaller --onefile --icon=<my_Logo.ico> BC-USD.py

总是会出现同样的错误:

pywintypes.error: (2, 'LoadLibraryEx', 'The system cannot find the file specified.')

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您的代码是否导入了dll?如果是这样,你需要告诉pyinstaller使用--add-binary或--add-data选项包含它:

pyinstaller --onefile --icon="icon.ico" --add-binary "current/path/to/dll/my_dll.dll; folder/to/store/dll/inside/pyinstaller/bundle"

http://pyinstaller.readthedocs.io/en/stable/usage.html