-bash: unzip: command not found解决方法
时间: 2023-08-02 12:07:56 浏览: 262
bash scp command not found的解决方法
这个错误提示表明你的系统上没有安装 unzip 命令。你可以使用以下命令安装 unzip:
- 对于 Debian/Ubuntu 系统:
```
sudo apt-get install unzip
```
- 对于 CentOS/RHEL 系统:
```
sudo yum install unzip
```
- 对于 macOS 系统:
```
brew install unzip
```
安装完成后,再次执行 unzip 命令即可。
阅读全文