首先说明,no module named 以下2种解决方案,我都失败了。
1:更新pyinstaller到最新版
2:重新填写spec文件,加入–hiden-import
我用自动生成spec的方法解决了这些问题
1:安装pyinstaller
pip install pyinstaller
2:制作spec脚本
pyi-makespec -w yourfile.py
3:生成文件包
pyinstaller yourfile.spec
首先说明,no module named 以下2种解决方案,我都失败了。
1:更新pyinstaller到最新版
2:重新填写spec文件,加入–hiden-import
我用自动生成spec的方法解决了这些问题
1:安装pyinstaller
pip install pyinstaller
2:制作spec脚本
pyi-makespec -w yourfile.py
3:生成文件包
pyinstaller yourfile.spec