自学内容网 自学内容网

各语言镜像配置汇总

镜像配置汇总

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

原文地址:https://blog.csdn.net/qq_36078992/article/details/145250346

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!