ubuntu18.04 安装pyinstaller
时间: 2023-10-12 12:15:24 浏览: 50
pyinstaller安装包
你可以通过以下命令在 Ubuntu 18.04 上安装 PyInstaller:
1. 首先更新 apt 包列表:
```
sudo apt update
```
2. 安装 pip 包管理器:
```
sudo apt install python3-pip
```
3. 安装 PyInstaller:
```
pip3 install pyinstaller
```
安装完成后,你可以通过以下命令验证 PyInstaller 是否正确安装:
```
pyinstaller --version
```
如果输出 PyInstaller 版本号,则表示已成功安装。
阅读全文