我将Node.js更新为5.x,之后我无法使用npm install。每次使用它都会导致错误:
$ npm install react-motion
npm ERR! Darwin 15.3.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "am2"
npm ERR! node v5.0.0
npm ERR! npm v3.3.6
npm ERR! code EINVALIDTYPE
npm ERR! typeerror Error: Argument #1: Expected string but got object
npm ERR! typeerror at markDeps (/usr/local/lib/node_modules/npm/lib/install/deps.js:87:5)
npm ERR! typeerror at /usr/local/lib/node_modules/npm/node_modules/slide/lib/async-map.js:52:35
npm ERR! typeerror at Array.forEach (native)
npm ERR! typeerror at /usr/local/lib/node_modules/npm/node_modules/slide/lib/async-map.js:52:11
npm ERR! typeerror at Array.forEach (native)
npm ERR! typeerror at asyncMap (/usr/local/lib/node_modules/npm/node_modules/slide/lib/async-map.js:51:8)
npm ERR! typeerror at Array.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/slide/lib/bind-actor.js:15:8)
npm ERR! typeerror at LOOP (/usr/local/lib/node_modules/npm/node_modules/slide/lib/chain.js:15:14)
npm ERR! typeerror at chain (/usr/local/lib/node_modules/npm/node_modules/slide/lib/chain.js:20:5)
npm ERR! typeerror at recalculateMetadata (/usr/local/lib/node_modules/npm/lib/install/deps.js:112:3)
npm ERR! typeerror This is an error with npm itself. Please report this error at:
npm ERR! typeerror <http://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR!
和npm安装不再工作,我无法回到以前版本的节点!
$ sudo -i
# npm install -g n // causes same errors!
# n 4.4.2; // not working anymore.
我应该完全重新安装node.js吗?或者我可以解决它吗?任何建议都会非常感激。
答案 0 :(得分:1)
首先尝试清理你的npm缓存:
rm -rf ~/.npm
npm cache clear
下一步,您可以尝试重建现有的包:
npm rebuild
也有人说,节点版本5.1
可以解决这个问题: