使用 Python 3 安装 Pip
要使用 Python 3 安装 pip,您可以根据您的系统和 Python 版本考虑多种选项。
对于 Python 版本 2.7.9 或 3.4 ,pip 应该已经是已安装。
类 Unix 系统
Debian/Ubuntu (Python 2.x)
sudo apt-get install python-pip
Debian/Ubuntu (Python 3.x)
sudo apt-get install python3-pip
CentOS 7 (Python 2.x)
安装安装工具,然后 pip:
sudo yum install python-setuptools sudo easy_install pip
CentOS 7(Python 3.x)
安装 Python 3 安装工具,然后 pip:
sudo yum install python34-setuptools sudo easy_install pip
手动安装
如果您的发行版没有其软件包存储库中没有 pip,请使用手册
使用 get-pip.py
从 pip 的安装说明中下载并运行脚本:
python get-pip.py
此方法将自动安装setuptools(如果尚未安装)。
以上是如何为 Python 3 安装 pip?的详细内容。更多信息请关注PHP中文网其他相关文章!