PS:

操作系统:Linux

Linux系统包管理器

1
2
3
4
5
6
7
8
# 中国大陆
bash <(curl -sSL https://linuxmirrors.cn/main.sh)

# 教育网
bash <(curl -sSL https://linuxmirrors.cn/main.sh) --edu

# 海外地区
bash <(curl -sSL https://linuxmirrors.cn/main.sh) --abroad

Pip国内源

源地址

名称 地址
阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

配置方法

临时配置

1
2
3
4
5
6
7
# HTTP
pip install {包名} -i {源地址URL}
pip install pandas -i http://pypi.mirrors.ustc.edu.cn/simple/

# HTTPS
pip install {包名} -i {源地址URL} --trusted-host {源地址}
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

永久配置

  • 全局配置
1
2
pip config --global set global.index-url http://pypi.douban.com/simple 
pip config --global set install.trusted-host pypi.douban.com
  • 更改默认源文件
1
vim ~/.pip/pip.conf

~/.pip/pip.conf内容如下:

1
2
3
4
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com

Conda镜像源

1
2
3
4
5
# 创建用户配置文件
vim ~/.condarc

# 清除
conda clean -i

~/.condarc内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
channels:
- defaults
show_channel_urls: true
default_channels:
- http://mirrors.aliyun.com/anaconda/pkgs/main
- http://mirrors.aliyun.com/anaconda/pkgs/r
​ - http://mirrors.aliyun.com/anaconda/pkgs/msys2
custom_channels:
conda-forge: http://mirrors.aliyun.com/anaconda/cloud
msys2: http://mirrors.aliyun.com/anaconda/cloud
bioconda: http://mirrors.aliyun.com/anaconda/cloud
menpo: http://mirrors.aliyun.com/anaconda/cloud
pytorch: http://mirrors.aliyun.com/anaconda/cloud
simpleitk: http://mirrors.aliyun.com/anaconda/cloud

Npm

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 查看当前配置镜像源
npm config get registry

# 淘宝镜像源
npm config set registry https://registry.npm.taobao.org

# 腾讯云镜像源
npm config set registry http://mirrors.cloud.tencent.com/npm/

# 华为云镜像源
npm config set registry https://mirrors.huaweicloud.com/repository/npm/

# 官方默认镜像源
npm config set registry https://registry.npmjs.org

Yarn 镜像源

1
2
3
4
5
6
7
8
# 查看当前配置镜像源
yarn config get registry

# 淘宝镜像源
yarn config set registry https://registry.npmmirror.com

# 官方默认镜像源
yarn config set registry https://registry.yarnpkg.com

Docker镜像源

源地址

名称 地址
网易云 https://hub-mirror.c.163.com
百度云 https://mirror.baidubce.com

配置方法

  • 临时配置
1
docker pull {镜像名称} -–registry-mirror={国内镜像源地址}
  • 永久配置
1
2
3
4
5
# 修改daemon配置文件
vim /etc/docker/daemon.json

# 重启docker
sudo systemctl restart docker

/etc/docker/daemon.json内容如下:

1
2
3
4
5
6
7
{
"registry-mirrors":
[
...
"https://hub-mirror.c.163.com"
]
}

参考资料