Home > other >  Create vue Permission denied
Create vue Permission denied

Time:06-08

I'm trying to install vue app using this command "npm init vue@latest",

But the following error occurred with me, any help :(

Note : I tried many solutions like : chmod -R 755 .npm and sudo chown -R mostafa .npm but nothing changes enter image description here

CodePudding user response:

In order to install vue on your machine you must first have installed nodejs ( package manager node package manager ) to which the acronym npm refers, I leave you the linux commands under :

install :

sudo apt install nodejs

shows the installed version of nodejs :

node -v

After installing nodejs try relaunching the command to install vue

CodePudding user response:

maybe you could try using the vue-cli like this:

npm install -g @vue/cli && vue create hello-world

If this wouldn't work then I'd suggest to reinstall node/npm

You should probably also make a clean installation of these tools so that you don't need to run such things as administrator

  • Related