# Vue CLI
Install the Vue CLI globally. Use sudo and put in password to install Vue CLI on the computer
sudo npm install -g @vue/cli
Once the CLI is installed, you can choose to use the terminal or the Vue UI
# Terminal
Create a new project using:
vue create <project name>
Run the project in development mode using:
npm run serve
Build the project for production:
npm run build
# UI
Run the following to use a GUI to manage Vue.
vue ui