我遇到一些麻烦!
运行以下命令时
subrara@subrara-desktop:~$ sudo npm install npm --global
我得到以下信息:
/usr/lib/node_modules/npm/bin/npm-cli.js:85
let notifier = require('update-notifier')({pkg})
^^^^^^^^
SyntaxError: Unexpected identifier
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:935:3
我已经安装了 node 和 npm,现在我想更新到 npm 的最新稳定版本。
操作系统:Ubuntu 14.04 LTS Trusty
请提出建议!
答案1
对我来说更好的方法是通过运行完全删除npm
和:node
sudo apt-get remove nodejs
sudo apt-get remove npm
sudo apt-get update
which node
并使用nvm
Node 版本管理重新安装。要安装,nvm
请按照此说明进行操作。https://gist.github.com/d2s/372b5943bce17b964a79