查看pip源和换源

Posted YI瑾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看pip源和换源相关的知识,希望对你有一定的参考价值。

查看当前pip源

(crawl) E:\\coding>pip config list
global.index-url='http://pypi.douban.com/simple'
global.timeout='6000'
global.trusted-host='pypi.douban.com'

更改pip源,在本次例子中更改成清华源

(crawl) E:\\coding>pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
Writing to C:\\Users\\admin\\AppData\\Roaming\\pip\\pip.ini

再次查看当前pip源,发现已更换成功

(crawl) E:\\coding>pip config list
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
global.timeout='6000'
global.trusted-host='pypi.douban.com'

注:
有的需要先对pip进行升级才能更换源

python -m pip install --upgrade pip

以上是关于查看pip源和换源的主要内容,如果未能解决你的问题,请参考以下文章

查看pip源和换源

python养成:pip3如何安装依赖库和换国内源安装库

Mac下conda换源、pip换源

kali源和Pip源收集(建议使用清华源)

Pip 临时换源 永久换源

pip换源及指令的使用