镜像 | 镜像站及常用软件源配置
1. 镜像站
- 清华大学开源软件镜像站
- 网易开源镜像站
- 阿里巴巴开源镜像站
- 中国科学技术大学开源软件镜像站
- 163
- 腾讯软件源
2. 软件源配置
2.1. Python
查看当前源:pip config get global.index-url
临时变更源:pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
永久变更源
# 清华
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple# 百度
pip config set global.index-url https://mirror.baidu.com/pypi/simple# 腾讯
pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple# 中国科学技术大学开源软件镜像站
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple
2.2. Go
可用站点
- 七牛云
- Baidu
设置依赖源
# 七牛云
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
2.3. Node.js
# 安装镜像源管理工具
npm install -g nrm# 指定为淘宝源
nrm use taobao
2.4. Docker
配置方法
- Linux:编辑
/etc/docker/daemon.json
,如果不存在就新建。 - macOS:
Preferences->Docker Engine
可选源
https://mirror.ccs.tencentyun.com
http://f1361db2.m.daocloud.io
http://hub-mirror.c.163.com
{"registry-mirrors": ["http://hub-mirror.c.163.com"]
}
验证
执行:docker info
...Registry Mirrors:http://hub-mirror.c.163.com/Live Restore Enabled: false
2.5. Homebrew
不推荐使用镜像源,经常会出现镜像源只能加速部分内容情况。
2.6. Qt
安装器执行程序 --mirror https://mirrors.ustc.edu.cn/qtproject
3. 参考
- Debian 11 (bullseye) 国内软件源
- Qt 镜像使用帮助
本文链接:https://my.lmcjl.com/post/12195.html
展开阅读全文
4 评论