如何更改npm正在使用的节点版本

时间:2017-09-17 00:47:57

标签: node.js npm

我怎样才能更改npm正在使用的节点版本?

我已经安装了节点6.11.2

$ node -v
v6.11.2

但是当我使用npm时检测节点v4.2.6

$ npm info
npm ERR! Linux 4.4.0-93-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "info"
npm ERR! node v4.2.6
npm ERR! npm  v3.5.2
npm ERR! code E404

npm ERR! 404 Registry returned 404 for GET on https://registry.npmjs.org/html5-webpack-template
npm ERR! 404 
npm ERR! 404  'html5-webpack-template' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! Please include the following file with any support request:
npm ERR!     /home/workspace/standards-playground/src/main/webapp/npm-debug.log

1 个答案:

答案 0 :(得分:1)

首先使用以下命令列出所有已安装的版本

nvm ls

之后使用以下命令

nvm use `<version>`

您可以按照Node Version Manager(nvm)的说明进行安装。