npm ERR! code ENOTFOUND
npm ERR! syscall getaddrinfo
npm ERR! network request to https://registry.npm.taobao.org/webpack failed, reason: getaddrinfo
ENOTFOUND registry.npm.taobao.org ENOTFOUND registry.npm.taobao.org
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'
發生錯誤:
解決辦法
1、執行:
npm config get proxy
npm config get https-proxy
如果返回值不為null,繼續執行:
(要確保兩個返回值都是null才可以,否則就要執行下面的代碼)
npm config set proxy null
npm config set https-proxy null
2、執行:
npm config set registry http://registry.npmjs.org/
然后執行下面的代碼就可以安裝cnpm了
npm install -g npm --registry=https://registry.npm.taobao.org
參考解決:https://blog.csdn.net/qq_45914170/article/details/112298654
