升级pip并安装库
Posted wx61a34ce102246
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了升级pip并安装库相关的知识,希望对你有一定的参考价值。
今天用pip安装一些常用库,然后出现以下这段代码。
需要升级一下pip
WARNING: You are using pip version 20.3.1; however, version 21.3.1 is available.
You should consider upgrading via the c:\\program files\\python\\python.exe -m pip install --upgrade pip command
参考
首先切换使用国内阿里巴巴的pypi镜像源
a. 找到下列文件(windows目录:C:\\Users\\Administrator)
~/.pip/pip.conf
b. 在上述文件中添加或修改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
接着升级pip
cmd下输入:python -m pip install --upgrade pip
ok
接着就可以继续使用pip install xxxxx 安装库了
以上是关于升级pip并安装库的主要内容,如果未能解决你的问题,请参考以下文章