Reputation: 59
Hi looking for some help. I have installed
when I go to test it on server using grunt serve, I get this response
-bash: grunt: command not found
don't know what i'm doing wrong
Any help greatly appreciated
Upvotes: 3
Views: 9059
Reputation: 59
Sorted Thanks Folks for all the help
Solution
1) npm install -g bower 2) in the file app I was using install bower
Upvotes: 0
Reputation: 3586
Installing npm install grunt is not enough. It just installs local grunt. You also need grunt-cli installed to use grunt command. To do that, input:
npm install -g grunt-cli
Upvotes: 1
Reputation: 719
You need to install the command line utility for Grunt.
npm install -g grunt-cli
You might need to run it with sudo
Upvotes: 5