赞
踩
问题:在python中安装第三方库时使用pip命令进行安装,pip默认从国外官网下载文件,下载速度很慢,经常下载超时。
解决办法:把pip源换成国内的,常用的有清华大学源、豆瓣源、阿里源、腾讯源(经我个人体验,阿里源是最好、下载速度最快、最稳定的)
具体方法(修改默认源配置文件):这是一个一劳永逸的方法,只需要修改一次,不需要每次使用pip时都修改pip源。
清华源:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
阿里源:pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
腾讯源:pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
豆瓣源:pip config set global.index-url http://pypi.douban.com/simple/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。