ubuntu 更换pip源

打印 上一主题 下一主题

主题 633|帖子 633|积分 1899

python爱好者
  1. # 查找pip的全局设置文件位置
  2. pip config list -v
  3. # 1. 命令行永久修改法
  4. pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
  5. # 2. 配置文件修改法
  6. # 创建一个名为.pip的文件夹
  7. mkdir ~/.pip  
  8. # 进入创建的文件夹
  9. cd ~/.pip
  10. # 创建pip.conf
  11. touch pip.conf
  12. # 编辑文件
  13. sudo vim ~/.pip/pip.conf
  14. # 复制下面的内容到文件中(配置的豆瓣源,也可以配置别的)
  15. [global]                                                                    
  16. index-url = http://pypi.tuna.tsinghua.edu.cn/simple/
  17. trusted-host = pypi.tuna.tsinghua.edu.cn
复制代码

1.命令行直接更改
#临时更改
pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple
#全局更改

# 清华源
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/

2.通过文件设置
#创建pip文件夹
sudo mkdir /root/.pip
cd /root/.pip
#创建pip.cong文件
touch pip.conf
#编辑pip.conf文件
sudo vim pip.conf
#在pip.conf文件中添加镜像源地址即可
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple


镜像源地址:

  • 阿里云 https://mirrors.aliyun.com/pypi/simple/
  • 豆瓣https://pypi.douban.com/simple/
  • 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
  • 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/
  • 华中科技大学https://pypi.hustunique.com/


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

小小小幸运

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表