用pip安装python包的时候,如果系统没有进行相关设置,则用的源服务器是国外的,在国内访问非常慢,我们需要换成国内的源服务器,pip换源通过如下命令:
pip config set global.index-url <源链接>
其中<源链接>是国内的某个源服务器的链接地址,常用的国内源地址如下:
https://pypi.tuna.tsinghua.edu.cn/simple
https://mirrors.aliyun.com/pypi/simple/
https://pypi.mirrors.ustc.edu.cn/simple
例如,换成 清华大学 源的命令如下:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
?换了源后,速度明显提升,下载失败率大大降低。
如果想检验是否换源成功,可用如下命令:
pip config list
如果换源成功,以上命令输出如下:
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple/'
临时换源,需要在pip 后面加上?-i 参数,命令格式如下:
pip install <packetname> -i <sourceUrl>
示例:临时换源为清华大学的命令如下:
pip install modelscope -i https://pypi.tuna.tsinghua.edu.cn/simple/
?