Python-pip镜像源配置及国内常用镜像源
Posted KwokRoot
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-pip镜像源配置及国内常用镜像源相关的知识,希望对你有一定的参考价值。
1.持久化配置镜像源
① Linux下:
放在~/.pip/pip.conf
② windows下:
当前用户文件夹\\pip\\pip.ini
③ 编辑 `pip.ini`:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
2.验证
pip config list
3.下载时临时指定镜像源
pip install numpy -i https://pypi.org/simple
# 信任 http 协议的源
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
拓展:
国内常用镜像源:
① 阿里镜像:
https://mirrors.aliyun.com/pypi/simple/
② 百度镜像:
https://mirror.baidu.com/pypi/simple/
③ 清华镜像:
https://pypi.tuna.tsinghua.edu.cn/simple/
④ 中科大镜像:
https://pypi.mirrors.ustc.edu.cn/simple/
⑤ 豆瓣镜像:
http://pypi.douban.com/simple/
⑥ 搜狐镜像:
http://mirrors.sohu.com/Python/
⑦ 华中科大镜像:
https://pypi.hustunique.com/
⑧ 山东理工大学镜像:
https://pypi.hustunique.com/
亲测好用的Homebrew国内镜像源及配置方式
参考技术AHomebrew (官网) 是一款包管理工具,目前支持macOS和Linux系统。主要有四个部分组成: brew、homebrew-core 、homebrew-cask、homebrew-bottles。
Homebrew官方安装脚本:
但 raw.githubusercontent.com 访问不稳定,如果等待一段时间后遇到下面提示,就说明无法访问官方脚本地址
我们可以提前设置homebrew-core镜像源并通过jsdelivr CDN加速脚本安装:
或者参考下清华镜像站的 Homebrew/Linuxbrew 镜像使用帮助 ,这里节约些安装的篇幅。
官方源是 https://github.com/Homebrew/homebrew-xxx.git ,由于 实在太慢了 我们基本不用。
清华镜像站同时提供 Homebrew 的 formula 索引的镜像(即 brew update 时所更新内容)。
操作说明 :设置环境变量 HOMEBREW_BOTTLE_DOMAIN ,值为 https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles 。
中国科大开源软件镜像站:https://mirrors.ustc.edu.cn/
清华大学开源软件镜像站:https://mirrors.tuna.tsinghua.edu.cn/
阿里云Homebrew源:https://mirrors.aliyun.com/homebrew
以上是关于Python-pip镜像源配置及国内常用镜像源的主要内容,如果未能解决你的问题,请参考以下文章