运行npm install时出错:找不到兼容版本:async

我在我的package.json中添加了caolan / async

"async": "~0.9.0", 

asynchronous的npmjs页面在他们的网站上写有“由caolan在7个月前发布的0.9.0”。 当我安装使用npm安装它给我错误

 npm ERR! notarget No compatible version found: async@'>=0.9.2-0 <0.10.0-0' npm ERR! notarget Valid install targets: npm ERR! notarget ["0.1.0","0.1.1","0.1.2","0.1.3","0.1.4","0.1.5","0.1.6","0.1.7","0.1.8","0.1.9","0.1.10","0.1.11","0.1.12","0.1.13","0.1.14","0.1.15","0.1.16","0.1.17","0.1.18","0.1.19","0.1.20","0.1.21","0.1.22","0.2.0","0.2.1","0.2.2","0.2.3","0.2.4","0.2.5","0.2.6","0.2.7","0.2.8","0.2.9","0.2.10","0.3.0","0.4.0","0.4.1","0.5.0","0.6.0","0.6.1","0.6.2","0.7.0","0.8.0","0.9.0"] npm ERR! notarget npm ERR! notarget This is most likely not a problem with npm itself. npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! System Linux 3.13.0-36-generic npm ERR! command "/usr/bin/node" "/usr/bin/npm" "install" npm ERR! cwd /home/ubuntu/pickingo/pickingo npm ERR! node -v v0.10.35 npm ERR! npm -v 1.4.28 npm ERR! code ETARGET npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /home/ubuntu/pickingo/pickingo/npm-debug.log npm ERR! not ok code 0 

如何解决这个错误?

要解决这个错误,你应该更新你的npm版本。 npm @ 1.4.28在版本中不理解~运算符。

 sudo npm install -g npm@latest 

之后,你应该有npm 2.1.16(或更新),你的npm install应该成功。