python-pip安装实例
目录
Python-pip 是一个现代的,通用的 Python包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。
以下为多个操作系统平台下Python-pip安装方法
通用方法 #
通过get-pip.py文件来安装,建议Windows用户使用,前提是你必须首先安装Python。
版本要求Python 2 >=2.7.9 或Python 3 >=3.4,可从官网下载http://www.python.org/
然后下载get-pip.py
下载地址 https://bootstrap.pypa.io/get-pip.py
通过python get-pip.py
命令来进行安装。
Linux下通过软件管理工具来安装Python-pip #
Fedora21 #
-
Python2
1 2
sudo yum upgrade python-setuptools sudo yum install python-pip python-wheel
-
Python3
1
sudo yum install python3 python3-wheel
Fedora22 #
-
Python2
1 2
sudo dnf upgrade python-setuptools sudo dnf install python-pip python-wheel
-
Python3
1
sudo dnf install python3 python3-wheel
CentOS/RHEL #
首先得启用EPEL repository,可参考此文
-
EPEL 6/EPEL 7
1
sudo yum install python-pip
-
EPEL 7
1
sudo yum install python-wheel
OpenSUSE #
-
Python 2:
1
sudo zypper install python-pip python-setuptools python-wheel
-
Python 3:
1
sudo zypper install python3-pip python3-setuptools python3-wheel
Debian/Ubuntu #
|
|
当系统安装的是Python3是,则安装python3-pip
Archlinux #
-
Python 2:
1
sudo pacman -S python2-pip
-
Python 3:
1
sudo pacman -S python-pip