After installing gulp.js via npm, I receive a no command \'gulp\' found error when running the gulp command from the same directory it was installe
no command \'gulp\' found
gulp
I solved the issue without reinstalling node using the commands below:
$ npm uninstall --global gulp gulp-cli $ rm /usr/local/share/man/man1/gulp.1 $ npm install --global gulp-cli