Anaconda安装了pyinstaller但是依然说命令不存在怎么办

错误信息,没有pyinstaller模块

file

给这个虚拟环境安装pyinstaller模块

命令:

pip install pyinstaller

file

执行命令,依然报错

file

可以直接指定命令地址运行,首先查找本环境的pyinstaller地址

file

你的地址和我的可以不一样,记住这个路径

用全路径执行

C:\Users\69360\.conda\envs\psspyqt6\Scripts\pyinstaller.exe -F -w .\excel_merger_main.py

就是你的虚拟环境地址C:\Users\69360.conda\envs\psspyqt6,加上 Scripts\pyinstaller.exe 再去执行打包命令

就不会报错了

file

Leave a Comment