鏡像配置匯總
- 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