bash: pip: command not found...
时间: 2024-01-27 08:15:03 浏览: 248
linux中pip操作时的超时解决方法
在Linux中,当出现"bash: pip: command not found"错误提示时,表示系统中没有安装pip工具。pip是Python的包管理工具,用于安装和管理Python包。
要解决这个问题,你需要安装pip工具。以下是两种常见的安装pip的方法:
1. 使用apt-get命令安装pip:
```shell
sudo apt-get install python-pip
```
2. 使用get-pip.py脚本安装pip:
首先,下载get-pip.py脚本:
```shell
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
```
然后,运行以下命令进行安装:
```shell
python get-pip.py
```
安装完成后,你就可以使用pip命令了。
阅读全文