1

I can't install gulp globally on my windows 7 machine. I used npm install --global gulp-cli but showed this error:

this

when i used gulp -v I got this error

enter image description here

please help

2 Answers2

1

At least, It solved! I followed this article install gulp till step #2 then I installed gulp globally on terminal using this code npm install gulp-cli -g.

Thank you everyone for help me.

0

try this commands: If you've previously installed gulp globally, try to delete it using:

npm rm --global gulp

After that install new version of gulp using:

npm install --global gulp
npm link gulp

and verify yourgulp version:

gulp --version
rassakra
  • 1,062
  • 5
  • 9