您好我正在尝试安装和运行angular-phonecat项目。
我收到了以下错误:
npm ERR! Error: No compatible version found: karma-chrome-launcher@'^0.1.4'
npm ERR! Valid install targets:
npm ERR! ["0.0.1","0.0.2","0.1.0","0.1.1","0.1.2","0.1.3","0.1.4","0.1.5"]
npm ERR! at installTargetsError (C:\Program Files (x86)\nodejs\node_modules\
npm\lib\cache.js:709:10)
npm ERR! at C:\Program Files (x86)\nodejs\node_modules\npm\lib\cache.js:631:
10
npm ERR! at saved (C:\Program Files (x86)\nodejs\node_modules\npm\node_modul
es\npm-registry-client\lib\get.js:138:7)
npm ERR! at Object.oncomplete (fs.js:107:15)
npm ERR! If you need help, you may report this log at:
npm ERR! <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR! <npm-@googlegroups.com>
npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program File
s (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! cwd C:\Users\abc\angular-phonecat
npm ERR! node -v v0.10.9
npm ERR! npm -v 1.2.24
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! C:\Users\abc\angular-phonecat\npm-debug.log
npm ERR! not ok code 0
我不知道出了什么问题?
---- 2014年11月3日更新----我将Node更新到版本v0.10.33,并在angular-phonecat目录下尝试npm install时开始出现以下错误。
npm WARN package.json karma-chrome-launcher@0.1.5没有README数据
angular-phonecat@0.0.0 postinstall C:\ abc \ angular-phonecat 凉亭安装
'bower'未被识别为内部或外部命令, 可操作程序或批处理文件。
npm ERR! angular-phonecat@0.0.0 postinstall: `bower install`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular-phonecat@0.0.0 postinstall script.
npm ERR! This is most likely a problem with the angular-phonecat package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! bower install
npm ERR! You can get their info via:
npm ERR! npm owner ls angular-phonecat
npm ERR! There is likely additional logging output above.
npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program File
s (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! cwd C:\abc\angular-phonecat
npm ERR! node -v v0.10.33
npm ERR! npm -v 1.4.28
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! C:\abc\angular-phonecat\npm-debug.log
npm ERR! not ok code 0
答案 0 :(得分:1)
打开你的package.json文件,用“karma-chrome-launcher”改变“karma-chrome-launcher”:“^ 0.1.4”:“0.1.4”,即删除插入符号。与使用该表示法的所有依赖项相同。您可以在此处查看版本号的含义。
https://www.npmjs.org/doc/files/package.json.html#dependencies
^字符表示“与...兼容”。
你也可以尝试升级node和npm,版本0.10.9和1.2.24现在已经很老了,^字符is not supported in that version。
Caret于2013年8月首次在npm上市,并成为了 默认保存前缀在6个月后的2014年2月。
这是npm版本1.3.7。
如果仍然无效,请尝试 npm cache clear ,然后再次 npm install 。
如果您的问题是代理,您可以尝试使用npm config set proxy和npm config set https-proxy,如jjasonclark.com/how-to-setup-node-behind-web-proxy所述。
希望这有帮助。
注意:我自己在这个存储库的新副本上尝试过npm install,虽然不是Windows和版本分别为0.10.28和1.4.9,但它仍然有效。所以package.json严格来说是正确的。