阿里云统一官方镜像站:https://developer.aliyun.com/mirror/
包含了所有开源的国内镜像源,如homebrew,npm,pip,centos等,差不多满足所有开发需求, 🐂🍻
go get 国内源
七牛:https://goproxy.cn
官方全球加速CDN:https://goproxy.io/
第三方:https://gocenter.io
pip 国内源
清华: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 install pyspider -i https://pypi.tuna.tsinghua.edu.cn/simple
永久修改,一劳永逸:
Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)
内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
gradle国内源
阿里:http://maven.aliyun.com/nexus/content/groups/public
使用方法
配置只在当前项目生效: 在 build.gradle 文件内修改/添加 repositories 配置
repositories {
maven {
url "http://maven.aliyun.com/nexus/content/groups/public"
}
}
配置全局生效: 找到 (用户家目录)/.gradle/init.gradle 文件,如果找不到 init.gradle 文件,自己新建一个修改/添加 init.gradle 文件内的 repositories 配置
allprojects {
repositories {
maven {
url "http://maven.aliyun.com/nexus/content/groups/public"
}
}
}