yum install pip
时间: 2023-09-03 21:08:12 浏览: 212
yum+python安装资源包
这个命令是在 CentOS 或者 Red Hat 系列的 Linux 操作系统中使用 YUM 包管理器安装 Python 的 pip 工具。如果你的系统是基于 Debian 或者 Ubuntu 系列的操作系统,应该使用 apt-get 命令。如果你想要在 CentOS 或者 Red Hat 系列的操作系统中安装 pip,可以在终端中输入以下命令:
```
sudo yum install epel-release
sudo yum install python-pip
```
这将安装 pip 工具和其它所需的依赖项。
阅读全文