正确版本的npm令人困惑的消息

时间:2019-01-09 17:37:57

标签: node.js vue.js npm

我对npm很陌生,我从vue开始。

我以前使用的是NPM的较早版本,现在在从事vue项目时,我将npm升级到了6.5.0-next.0

现在,当我尝试使用npm run build构建vue项目时,我收到一条错误消息,提示:

> node build/build.js


To use this template, you must update following to modules:

  npm: 6.5.0-next.0 should be >= 3.0.0

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! clinic@1.0.0 build: `node build/build.js`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the clinic@1.0.0 build script.

它说should be >= 3.0.0已经不比3.0大6.5了

1 个答案:

答案 0 :(得分:3)

只需安装npm最新的稳定版本

npm i -g npm@latest

sudo npm i -g npm@latest