常用软件国内源镜像地址大全
常用开源镜像源
pip/pip3/PyCharm等使用国内镜像
- 清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple
临时使用
在使用pip/pip3的时候加参数-i 镜像url
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,这样就会从清华这边的镜像去安装pyspider库。
永久修改:
linux:
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows:
直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
CENTOS
更换阿里云镜像
- CENTOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo - CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo - CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
更换网易镜像
-
CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo -
CentOS6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo -
CentOS5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS5-Base-163.repo
清理缓存重新生成缓存
yum clean all
yum makecache
yum update -y 更新最新源设置
ubuntu/debian/deepin/
-
开源项目镜像
CentOS http://mirror-status.centos.org/#cn
Archlinux https://www.archlinux.org/mirrors/status/
Ubuntu https://launchpad.net/ubuntu/+cdmirrors
Debian http://mirror.debian.org/status.html
Fedora Linux/Fedora EPEL https://admin.fedoraproject.org/mirrormanager/mirrors
Apache http://www.apache.org/mirrors/#cn
Cygwin https://www.cygwin.com/mirrors.html -
国内镜像源
网易开源镜像站 http://mirrors.163.com
清华大学开源软件镜像站 https://mirrors.tuna.tsinghua.edu.cn
中科大开源软件镜像站 http://mirrors.ustc.edu.cn/
阿里巴巴开源软件镜像站 http://mirrors.aliyun.com/
华中科技大学开源镜像站 http://mirror.hust.edu.cn/
兰州大学开源镜像站 http://mirror.lzu.edu.cn/
淘宝 NPM 镜像 https://npm.taobao.org/ -
其他不常用(校内用或地区用):
北京理工大学开源镜像站 http://mirror.bit.edu.cn/web/
东北大学开源镜像站 http://mirror.neu.edu.cn/
浙江大学开源镜像站 http://mirrors.zju.edu.cn/
重庆大学开源镜像站 http://mirrors.cqu.edu.cn/
天翼云开源镜像站 http://mirrors.ctyun.cn/
首都在线科技股份有限公司 http://mirrors.yun-idc.com/
南阳理工学院开源镜像站 http://mirror.nyist.edu.cn/
天翼云开源镜像站 http://mirrors.ctyun.cn/
台湾淡江大学镜像站 http://ftp.tku.edu.tw/Linux/
公云PubYun(母公司为贝特康姆) http://mirrors.pubyun.com/
Fayea工作室(只做Apache镜像) http://apache.fayea.com/ -
容器镜像源
官方容器镜像市场
源名 源链接
Docker Hub https://hub.docker.com/
quay.io https://quay.io/
国内容器镜像市场
daocloud http://hub.daocloud.io/
阿里云容器镜像服务 https://dev.aliyun.com/search.html
Kubernetes镜像
kubernetes https://kubernetes.io/
(临时用) https://github.com/anjia0532/gcr.io_mirror
更多推荐
所有评论(0)