npm:

淘宝: http://npm.taobao.org

cnpm: http://registry.cnpmjs.org

npm install MODULE --registry=https://registry.npm.taobao.org

或者直接 nrm 管理多个镜像

 

pip:

豆瓣:http://pypi.douban.com/simple/

清华:https://pypi.tuna.tsinghua.edu.cn/simple

pip install MODULE -i https://pypi.tuna.tsinghua.edu.cn/simple 

pip.ini/pip.conf

[global]
 index-url = https://pypi.tuna.tsinghua.edu.cn/simple

 

homebrew:

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

 

yum:

1、备份

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/

CentOS 5:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

或者

curl -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

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

 3、之后运行yum makecache生成缓存

相关文章:

  • 2021-07-30
  • 2022-12-23
  • 2021-09-11
  • 2021-07-05
  • 2021-11-19
  • 2021-06-22
  • 2021-12-05
  • 2022-12-23
猜你喜欢
  • 2021-09-12
  • 2021-09-06
  • 2021-04-06
  • 2021-09-19
  • 2021-05-14
  • 2021-07-13
相关资源
相似解决方案