执行:npm install 时,报错:If you are behind a proxy, please make sure that the ‘proxy’ config is set prope

Article directory


1. Question:

Insert image description here

2. Solution:

Check NPM proxy settings and delete NPM proxy settings

#检查 NPM 代理设置
npm config get proxy

#删除掉 NPM 代理设置
npm config rm proxy  
npm config rm https-proxy

#再次检查 NPM 代理设置
npm config get proxy

#再次执行安装命令
...

Insert image description here

Guess you like

Origin blog.csdn.net/weixin_53791978/article/details/133268688