刚从源代码安装了Node.js v.0.10.20。目标框Ubuntu 12.04.3 LTS。 节点安装正常没有错误。毕竟它似乎是:
node -v
v0.10.20
npm -v
1.3.11
但是只是列出我的-g模块,我得到了一些我无法弄清楚的奇怪信息:
esa@fingolfin:~$ npm list -g
npm WARN unmet dependency /usr/local/lib/node_modules/npm/node_modules/normalize-package-data requires semver@'1.x' but will load
npm WARN unmet dependency /usr/local/lib/node_modules/npm/node_modules/semver,
npm WARN unmet dependency which is version 2.1.0
在-g列表的底部,我看到更多消息:
npm ERR! invalid: semver@2.1.0 /usr/local/lib/node_modules/npm/node_modules/semver
npm ERR! extraneous: normalize-package-data@0.1.7 /usr/local/lib/node_modules/npm/node_modules/normalize-package-data
npm ERR! not ok code 0
我也可以在npm@1.3.11下看到-module行:
│ ├── semver@2.1.0 invalid
如果我没记错的话,在前一个节点版本(0.10.18)中也会发生这种情况。
恼人的消息,我无法解决。我确定我没有手动安装semver-module,并确保我安装的所有节点模块都没有使用semver。
编辑:感谢Nirk,重新安装npm将解决这个问题。可以肯定的是,我给了 sudo su - 并以root身份重新安装。也许只是 sudo :ing也可以。
这是我做的:
sudo su -
root@fingolfin:~# curl https://npmjs.org/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7882 100 7882 0 0 13118 0 --:--:-- --:--:-- --:--:-- 23669
tar=/bin/tar
version:
tar (GNU tar) 1.26
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
install npm@latest
fetching: http://registry.npmjs.org/npm/-/npm-1.3.11.tgz
0.10.20
1.3.11
cleanup prefix=/usr/local
All clean!
unbuild npm@1.3.11
/usr/local/bin/npm -> /usr/local/lib/node_modules/npm/bin/npm-cli.js
npm@1.3.11 /usr/local/lib/node_modules/npm
It worked
root@fingolfin:~#
请注意,网址已移至 https://npmjs.org/install.sh
答案 0 :(得分:4)
你有一个旧版本的normalize-package-data(当前版本取决于semver版本2:https://github.com/meryn/normalize-package-data/blob/master/package.json#L15)
要在不使用npm的情况下强制重新安装npm,请尝试使用shell脚本
curl https://npmjs.org/install.sh | sh
答案 1 :(得分:1)
如果您确定不使用它,请尝试取消/重新安装。这应该摆脱错误信息。
npm un semver -g
然后npm install semver -g
编辑:您的某个模块似乎需要semver@1.x,请尝试sudo npm install semver@1.1.4 -g
答案 2 :(得分:1)
请注意,网址已移至: https://www.npmjs。 com /install.sh (截至2015年4月)
这应该有效:
curl https://npmjs.com/install.sh | sh