问题描述
运行npm install安装包时,出现如下错误:
| npm ERR! code ENOTFOUND |
| npm ERR! syscall getaddrinfo |
| npm ERR! errno ENOTFOUND |
| npm ERR! network request to https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619133505879&other_urls=https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz failed, reason: getaddrinfo ENOTFOUND registry.nlark.com |
| npm ERR! network This is a problem related to network connectivity. |
| npm ERR! network In most cases you are behind a proxy or have bad network settings. |
| npm ERR! network |
| npm ERR! network If you are behind a proxy, please make sure that the |
| npm ERR! network 'proxy' config is set properly. See: 'npm help config' |
| |
| npm ERR! A complete log of this run can be found in: D:\software\nodejs\node_cache\_logs\2024-07-13T09_56_26_626Z-debug-0.log |
复制
原因分析:
这是一个与网络连接有关的问题。在大多数情况下,与代理或网络设置有关。
解决方案:
重新设置代理:
- 移除旧的代理
| npm config rm proxy |
| npm config rm https-proxy |
复制
- 设置新的代理
| npm config set registry https://registry.npmmirror.com |
复制