pip版本降级

pip10.0.1版本安装包报一堆错误,所以降级为9.0.3版本。

使用命令:
python -m pip install pip==9.0.3

其中,-m参数的解释:

run library module as a script (terminates option list)

将库中的python模块用作脚本去运行。

apt-get install python3-pip

原文地址:https://www.cnblogs.com/iceman-/p/9382055.html