linux pip使用国内源
程序员文章站
2022-05-13 21:17:35
最近在Linux里面学习用Django做一个博客,在使用pip安装应用的时候就发现速度十分的慢,于是便上网找了一些国内的源。 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:https://mirrors.aliyun.com/pypi/simpl ......
最近在linux里面学习用django做一个博客,在使用pip安装应用的时候就发现速度十分的慢,于是便上网找了一些国内的源。
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple
中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple
豆瓣:http://pypi.douban.com/simple
修改pip为国内源
修改家目录隐藏的配置文件
vim ~/.pip/pip.conf
一般配置文件不存在的,如果上诉方法不行这执行下面步骤
1 cd ~ && mkdir .pip 2 cd .pip && vim pip.conf
然后修改pip.conf的内容为
1 [global] 2 index-url = https://pypi.tuna.tsinghua.edu.cn/simple
大功告成。