设置首页收藏本站在线聊天
授权版本:2024_09
开启左侧

[Python] pip安装太慢怎么切换国内源?

[复制链接]
绝地武士 发表于 2024-4-7 09:50:57 | 显示全部楼层 |阅读模式
国内pypi安装源:
  1. pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple
  2. pypi 腾讯源:http://mirrors.cloud.tencent.com/pypi/simple
  3. pypi 阿里源:https://mirrors.aliyun.com/pypi/simple/
  4. pypi 豆瓣源 :https://pypi.douban.com/simple/
复制代码

以使用清华大学源为例:
1.命令行临时修改
  1. pip install ping3 -i https://pypi.tuna.tsinghua.edu.cn/simple
复制代码

2.命令行永久修改(生成配置文件)
  1. pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
  2. pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn
复制代码
配置文件路径在:C:\Users\自行替换用户名\AppData\Roaming\pip\pip.ini


3.配置文件手动修改
windows在C:\Users\自行替换用户名\AppData\Roaming\pip\pip.ini(没有就自行创建对应目录和文件),输入以下内容:
  1. [global]
  2. index-url = https://pypi.tuna.tsinghua.edu.cn/simple

  3. [install]
  4. trusted-host = pypi.tuna.tsinghua.edu.cn
复制代码

奖励计划已经开启,本站鼓励作者发布最擅长的技术内容和资源,流量变现就在现在,[点我]加入吧~~~Go
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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