giovannipds
giovannipds

Reputation: 3459

Can't install Yeoman's generator-webapp at Windows 10

I'm trying to study Yeoman (trying to test it for the first time), but following the Getting started docs, I'm not being able to install the most basic generator, the generator-webapp.

Here's the returned messages and my npm-debug-log: http://www.filedropper.com/npm-debug

Git Bash messages

I was able to install Yeoman, Bower, Grunt and Gulp, normally and globally, but when I try the generator-web-app, it gave me those errors above. I'm already using Bower and Grunt in my projects, normally.

I'm using Windows 10 and I'm trying to install it through Git Bash, running with Administrador privileges.

P.s.: I've already tried to run npm cache clean, which I saw it as a suggestion in other questions.

In advance, thank you very much for any interaction.

Upvotes: 1

Views: 1620

Answers (1)

Fabrício Matté
Fabrício Matté

Reputation: 70139

Install a recent version of npm and it will automatically attempt to fix any permission issues:

npm install -g npm

Upvotes: 3

Related Questions