WARNING: You are using pip version 19.1.1, however version 19.2.1 is available. You should consider

问题: WARNING: You are using pip version 19.1.1, however version 19.2.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

按照提示使用python -m pip install --upgrade pip之后仍是同样的error。

解决方法: 加一个豆瓣镜像:

python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

注意:使用pip install 安装包时若出现超时等现象也可以加上这个豆瓣源,就不会报错了。

WARNING: You are using pip version 19.1.1, however version 19.2.1 is available. You should consider_第1张图片

你可能感兴趣的:(Python)