关系
如果系统中只安装了Python3sudo apt install python3-pip # pip3
安装
安装方式一:
sudo apt install python3-pip # pip3
sudo apt install python-pip#pip
安装方式二:
pip与pip3的安装脚本是一样的,根据python运行的脚本方式,系统将选择安装相应的版本,如下:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载安装脚本
sudo python get-pip.py # 安装pip
sudo python3 get-pip.py #安装pip3
提速
- 永久修改
如果觉得太长,可以自己做一个别名,安装起来就方便啦。
如果觉得还不太方便,可以对配置进行修改。linux( ~/.pip/pip.conf
)
文件中写如下内容:
[global]
timeout = 60
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
linux下的指定位置为:
$HOME/.config/pip/pip.conf
#或者
$HOME/.pip/pip.conf
参考: