在目标文件下cmd
【python】将python代码打包成系统可执行文件(Pyinstaller模块)
导入多个模块的操作,注意模块需要先在cmd里面pip install才能被找到,不然报错no module found。
pyinstaller -F -c QTimerTest.py --hidden-import sklearn.
neighbors.typedefs --hidden-import sklearn.neighbors.quad_
tree --hidden-import
pywt._extensions._cwt --add-data=xgboost;xgboost
其他的按照上面的教程,注意素材文件要和exe放到一个目录,或者使用绝对路径应该也行(没试)
为了防止exe闪退,可以在代码最后后面加上
input()