各语言镜像配置汇总
镜像配置汇总
- Nodejs [ npm ]
- Python [ pip ]
Nodejs [ npm ]
// # 记录日期:2025-01-20
// 查询当前使用的镜像
npm get registry
// 设置淘宝镜像
npm config set registry https://registry.npmmirror.com/
// 恢复为官方镜像
npm config set registry https://registry.npmjs.org/
Python [ pip ]
# 记录日期: 2025-01-20
#### 查看当前使用的镜像
pip config get global.index-url
#### 设置镜像
# 豆瓣镜像
pip config set global.index-url https://pypi.douban.com/simple/
# 阿里云镜像
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
# 清华镜像
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
# 恢复默认镜像
pip config unset global.index-url