Search code examples
node.jsvue.jsvuejs2vuejs3vue-cli

Failed to install Vue.js Cli


node -v: v8.10.0

npm -v: 3.5.2

While running npm install -g @vue/cli or sudo npm install -g @vue/cli I get the error below and failed to download Vue CLI


Solution

  • You are using a rather old version of npm. The current version is 6.9.0, and the packages you are working with are asking for npm >= 5.5.1.

    You need to update your node version, if possible always use latest node version

    Nodejs version 14.4.
    

    And if you have project that required different node version then use

    NVM - node version manager
    

    Just use sudo for global install

    sudo npm install -g @vue/cli