在我的计算机上安装phonegap时,收到此错误消息。我不知道如何解决它。
C:\Users\Scott>npm install -g phonegap
npm ERR! network connect ETIMEDOUT
npm ERR! network This is most likely not a problem with npm itself
npm ERR! network and is related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settin gs.
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! System Windows_NT 6.2.9200
npm ERR! command "C:\Program Files\nodejs\\node.exe" "C:\Program Files\nod
ejs\node_modules\npm\bin\npm-cli.js" "install" "-g" "phonegap"
npm ERR! cwd C:\Users\Scott
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
npm ERR! syscall connect
npm ERR! code ETIMEDOUT
npm ERR! errno ETIMEDOUT
npm ERR!
npm ERR! Additional logging details can be found in: npm ERR! C:\Users\Scott\npm-debug.log
npm ERR! not ok code 0
我尝试使用C:\Users\Scott>npm config set registry="http://registry.npmjs.org/"
更改注册表,但无法解决错误。我已经尝试卸载并重新安装node.js,但这也无效。如果有帮助的话,我正在我的家庭网络上工作。我也试过安装以前版本的phonegap但没有成功。我也试过安装cordova,但也没有用。给出了同样的错误。
答案 0 :(得分:0)
看起来NPM无法访问互联网。如果您在合作网络下,则可能需要为NPM设置代理。 npm config set proxy http://your-proxy-server:your-proxy-port
。您需要手动设置NPM中的代理设置。
HTH。