查看pip源和换源

Posted Y彤

tags:

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

有的时候我们使用pip下载包的时候,会觉得下载速度十分慢,那是因为在默认情况下,pip使用的国外的源,想要下载速度快点的话,就需要把源换成国内的源。

常见的国内源有以下几种
清华:https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣:http://pypi.douban.com/simple/
中国科学技术大学 :https://pypi.mirrors.ustc.edu.cn/simple/

1、查看当前pip源
pip config list

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

2、更改pip源,在本次例子中更改成清华源
pip config set global.index-url 清华源网址

(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

3、再次查看当前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换源及指令的使用