常用开发工具及开发环境的国内镜像源
Posted 空影星辉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用开发工具及开发环境的国内镜像源相关的知识,希望对你有一定的参考价值。
maven 阿里源
<mirror>
<id>nexus-aliyun</id>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
Gradle 阿里源
allprojects {
repositories {
maven { url 'file:///D:/dev_tools/maven_repository'}
mavenLocal()
maven { name "Alibaba" ; url "https://maven.aliyun.com/repository/public" }
maven { name "Bstek" ; url "http://nexus.bsdn.org/content/groups/public/" }
mavenCentral()
}
buildscript {
repositories {
maven { name "Alibaba" ; url 'https://maven.aliyun.com/repository/public' }
maven { name "Bstek" ; url 'http://nexus.bsdn.org/content/groups/public/' }
maven { name "M2" ; url 'https://plugins.gradle.org/m2/' }
}
}
}
pip 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
docker 网易源
vim /etc/docker/daemon.json
{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}
CentOS7 yum 阿里源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
CentOS7 epel 阿里源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
Ubuntu20.04 apt 阿里源
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
nvm 淘宝源
vim ~/.bashrc
export NVM_NODEJS_ORG_MIRROR="https://npm.taobao.org/mirrors/node"
npm 淘宝源
npm config set registry https://registry.npm.taobao.org
yarn 淘宝源
yarn config set registry https://registry.npm.taobao.org
yay 清华源
yay --aururl "https://aur.tuna.tsinghua.edu.cn" --save
清华大学开源软件镜像站:
阿里巴巴开源镜像站:
网易开源镜像站:
中科大开源镜像站:
http://mirrors.ustc.edu.cn/
最后感谢我宇宙无敌可爱的姐姐!
以上是关于常用开发工具及开发环境的国内镜像源的主要内容,如果未能解决你的问题,请参考以下文章
开发常用镜像资源替换为国内开源镜像(yum,compose,maven,docker,android sdk,npm,国内开源镜像汇总)