软件镜像地址合集
国内镜像源(registry)
阿里:https://registry.npmmirror.com
腾讯:http://mirrors.cloud.tencent.com/npm/
华为:https://repo.huaweicloud.com/repository/npm/
npm 淘宝源镜像配置或安装
nrm 是 npm 的镜像源管理工具
- 1、全局安装:
npm install -g nrm
- 2、查看当前可选的镜像源:
nrm ls
- 3、切换镜像源:
nrm use taobao
- 选修: 添加自己公司私有源:
nrm add name http://www.xxx.xxx/
npm 源镜像设置
查看镜像是否设置
npm config get registry // 查看镜像,不是国内,再设置淘宝镜像即可
原淘宝 npm 域名即将停止解析,请切换至新域名:npmmirror 中国镜像站
http://npm.taobao.org
和 http://registry.npm.taobao.org
将在 2022.06.30 号正式下线和停止 DNS 解析
新域名为 npmmirror.com
, 相关服务域名切换规则请参考:
http://npm.taobao.org => http://npmmirror.com
http://registry.npm.taobao.org => http://registry.npmmirror.com
使用淘宝镜像方法一
使用阿里定制的 cnpm 命令行工具代替默认的 npm,输入以下代码
npm install -g cnpm --registry=http://registry.npmmirror.com
检查是否安装成功:
cnpm -v
安装成功之后,以后安装依赖包的方式和 npm 的是一样的,只是 npm 的命令换成是 cnpm 就可以了。
使用淘宝镜像方法二
a: 单次使用:
npm install --registry=http://registry.npmmirror.com
b: 永久替换:
在开发 react-native 的时候,不要使用 cnpm,cnpm 安装的模块路径比较奇怪,packager 不能正常识别。
所以,为了方便开发,我们最好是直接永久使用淘宝的镜像源
直接命令行的设置
npm config set registry https://registry.npm.taobao.org
手动修改设置
1.打开.npmrc文件(C:\Program Files\nodejs\node_modules\npm\npmrc,没有的话可以使用git命令行建一个( touch .npmrc),用cmd命令建会报错)
2.增加 registry =https://registry.npm.taobao.org 即可。
如果需要恢复成原来的官方地址只需要执行如下命令:
npm config set registry https://registry.npmjs.org
检测是否安装成功:
npm config get registry
有时 npm 命令不太稳定,报错的话,可以使用 cnpm,语法一模一样
npm install -g cnpm --registry=https://registry.npm.taobao.org
阿里巴巴开源镜像站
阿里巴巴开源镜像站-OPSX 镜像站-阿里云开发者社区 (aliyun.com)
腾讯云软件源
网易开源镜像站
京交通大学自由与开源软件镜像站
首页 - 北京交通大学自由与开源软件镜像站 (bjtu.edu.cn)
上海交通大学软件镜像站
上海交通大学 Linux 用户组 软件源镜像服务 (sjtu.edu.cn)
清华大学开源软件镜像站
中国科大开源软件镜像站
USTC Open Source Software Mirror
开源软件镜像站
北京理工大学开源软件镜像服务
兰州大学开源社区镜像站
北京外国语大学开源软件镜像站
国外网站的镜像网站
1.Google 学术:
谷歌学术镜像_Google 学术搜索导航@思谋学术 (scmor.com)
2.中文版维基百科:
3.GitHub 镜像网站:
4.谷歌商店:
ChromeFor 浏览器插件下载中心 - 国内最新最全的浏览器 chrome 插件,应用,主题,下载中心。支持更新备份各版本 crx 文件。
5.SCI-Hub:
SCI-Hub 论文下载可用网址链接(实时更新) - YoviSun 工具集
6.Twitter:
Twitter - Latest news updates, pictures, video, reaction - The Mirror
7.油管(youtube):
YouTube - Latest news updates, pictures, video, reaction - The Mirror
使用 pip 下载 Python 库时设置镜像源的方法
临时使用一次可以通过如下命令:pip install -i 镜像源 URL Python 库名称
pip install -i https://mirrors.njupt.edu.cn/nexus/repository/pypi/simple numpy
设为默认:
pip config set global.index-url https://mirrors.njupt.edu.cn/nexus/repository/pypi/simple