我用python创建了一个小程序(包括一些Qt5),然后使用nuitka使用以下命令行创建了一个exe:
python -m nuitka --standalone --follow-imports --enable-plugin=qt-plugins --mingw64 rs_main.py
这会生成一个 rs_main.dist 文件夹,其中包含许多 pyd 和 dll 文件以及一个 rs_main.exe。执行此 exe 工作正常
但是,我尝试将此文件夹复制到计算机的其他位置,例如:
c:\Program files\
、、甚至c:\
,但 exe 不断崩溃。desktop
Downloads
我在事件查看器中找到了一些信息,告诉我:
Faulting application name: rs_main.exe, version: 0.0.0.0, time stamp: 0x5cb4928c
Faulting module name: python37.dll, version: 3.7.3150.1013, time stamp: 0x5c9954b1
Exception code: 0xc0000005
Fault offset: 0x000000000002324d
Faulting process id: 0x77cc
Faulting application start time: 0x01d4f44b3ff0a8fe
Faulting application path:
D:\Users\hillebr\Downloads\test\rs_main.dist\rs_main.exe
Faulting module path:
D:\Users\hillebr\Downloads\test\rs_main.dist\python37.dll
有人知道我接下来应该去哪里吗?