我对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了
答案 0 :(得分:3)
只需安装npm最新的稳定版本
npm i -g npm@latest
或
sudo npm i -g npm@latest