-bash: pyinstaller:未找到命令 怎么回事
时间: 2023-07-16 07:15:49 浏览: 226
将python脚本打包成exe可执行文件(csdn)————程序.pdf
5星 · 资源好评率100%
这个错误通常意味着你没有安装 `pyinstaller`,或者它没有添加到你的系统路径中。你可以尝试使用以下命令来安装 `pyinstaller`:
```
pip install pyinstaller
```
如果你已经安装了 `pyinstaller`,那么可能是因为它没有被添加到你的系统路径中。在这种情况下,你可以尝试使用以下命令来将 `pyinstaller` 添加到你的系统路径中:
```
export PATH=/path/to/pyinstaller:$PATH
```
将 `/path/to/pyinstaller` 替换为你安装 `pyinstaller` 的路径。如果你使用的是 Windows 系统,则应该使用以下命令来添加 `pyinstaller` 到系统路径中:
```
set PATH=%PATH%;C:\path\to\pyinstaller
```
将 `C:\path\to\pyinstaller` 替换为你安装 `pyinstaller` 的路径。
阅读全文