我能够安装pyinstaller,并且在键入pyinstaller --onefile --windowed frontend.py
时
我收到此错误:
pyinstaller : The term 'pyinstaller' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was
included, verify that the path is correct and try again.
At line:1 char:1
+ pyinstaller --onefile --windowed frontend.py
+ ~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (pyinstaller:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
请帮助我解决此错误。 谢谢
答案 0 :(得分:0)
pyinstaller
应该在PATH环境变量中。
首先找到pyinstaller.exe
的完整路径(它应位于Python安装的Scripts
目录中)并复制完整路径。
然后打开一个命令提示符(以管理员身份)
然后运行命令setx PATH "%PATH%;PYINSTALLER_PATH"
,其中PYINSTALLER_PATH
是您复制的pyinstaller的完整路径。
然后,您需要重新启动命令提示符并再次运行该命令。
答案 1 :(得分:0)
这意味着 PyInstaller 没有安装 try : [] - 打开控制台/外壳/终端并在命令下写入
pip 安装 pyinstaller