Home > Enterprise >  How to setup and install vue in Ubuntu?
How to setup and install vue in Ubuntu?

Time:11-10

I am a new in Vue.js I want to install vue.js in my computer.I am currently using Ubuntu . Can anyone help me to setup vue.js framework.

CodePudding user response:

Step1: Intall node on your computer. You could Read this article https://www.geeksforgeeks.org/installation-of-node-js-on-linux/

Step2: install vue-cli globaly from npm.

npm install -g @vue/cli

CodePudding user response:

first you need to install npm using the command

npm install

then run the command

npm install -g @vue/cli

CodePudding user response:

You can try those Few lines and better is firstly update your ubuntu

 sudo apt install nodejs
sudo apt install npm
and then sudo apt install npm
it's Done 
  • Related