在以下目录中运行Powershell:
pyinstaller --onefile --icon=<my_Logo.ico> BC-USD.py
总是会出现同样的错误:
pywintypes.error: (2, 'LoadLibraryEx', 'The system cannot find the file specified.')
我该如何解决这个问题?
答案 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"