pip - nonelittlesong/study-ubuntu GitHub Wiki

一、安装pip

https://blog.csdn.net/Arvin_zx/article/details/78893079


wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate  
sudo python get-pip.py

DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
新建pip源配置文件

$ mkdir ~/.pip  
$ vim ~/.pip/pip.conf  

添加内容
[list]
format=columns


二、pip指令

显示pip版本

pip show pip

三、pip3

安装制定版本

$ pip3 install Django==2.2.13