node.js - Installing gulp to windows 10 -
i've installed gulp
npm install --global gulp
and set envidoment variable:
- variable: gulp_home - value: c:\users\myaccount\appdata\roaming\npm\node_modules\gulp (..\gulp folder)
in environment variables , try run "gulp". message in cmd:
c:\myaccount\workspace\todoparrot>gulp [09:47:24] local gulp not found in c:\myaccount\workspace\todoparrot
how set gulp work?
you must locally install gulp folder. use following command.
npm install gulp
this fixed problem
Comments
Post a Comment