中国镜像

介绍

好过开源软件的仓库都在国外,直接从国外仓库下载速度比较慢,如果再有Q的存在,下载就是个灾难。

我个人喜欢临时启用国内镜像,不喜欢永久配置国内镜像。当官方仓库下载很慢的时候再主动启用镜像,一切尽在掌握之中。

pypi

python -m pip install web.py -i http://pypi.douban.com/simple –trusted-host pypi.douban.com

python -m pip install web.py -i http://pypi.douban.com/simple –trusted-host pypi.douban.com

1
python -m pip install tqdm  -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

conda 镜像使用示例

conda install rdkit -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/rdkit/

conda install -c anaconda pymongo=3.7.2 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main

conda install -c anaconda keras=2.2.4 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge

conda 镜像列表

  1. tuna: https://mirrors.tuna.tsinghua.edu.cn

  2. bfsu: https://mirrors.bfsu.edu.cn/ (推荐)

建议尝试不同的镜像,有时候tuna速度更快,有时候bfsu速度更快。

yum 镜像

  1. 清华镜像: https://mirrors.tuna.tsinghua.edu.cn/help/centos/

  2. 网易镜像
    https://mirrors.163.com/.help/centos.html

建议 网易 和 清华镜像交换使用, 有时候清华镜像抽风,有时网易镜像抽风。
使用方法也很简单,到官网下载相应的Centos-Base.repo文件。
然后替换系统中文件即可,/etc/yum.repos.d/
最后清楚系统中原来的缓存,并生成新的缓存。

1
2
yum clean all
yum makecache
1
替换前,建议备份该文件