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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -