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

raj*_*aju 1 asynchronous node.js npm

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

"async": "~0.9.0",
Run Code Online (Sandbox Code Playgroud)

npmjs页面的async在他们的网站上写了"由caolan 7个月前发布的0.9.0".当我使用npm install安装时,它给了我错误

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
Run Code Online (Sandbox Code Playgroud)

如何修复错误?

Sam*_*kes 11

要修复错误,您应该更新您的版本npm. npm@ 1.4.28对~版本中的运算符不了解.

sudo npm install -g npm@latest
Run Code Online (Sandbox Code Playgroud)

在那之后,你应该有npm 2.1.16(或更新),你npm install应该成功.