I'm trying to install grunt globally using the following command from the command line:
npm install -g grunt
The installation command seems to succeed with no errors written to the console. However, when I enter grunt at the command line after install I get the following error:
'grunt' is not recognized as an internal or external command, operable program or batch file
It looks like the install command installs grunt into the following directory by default:
c:\users\my_login_id\appdata\roaming\npm\node_modules\grunt
Not sure if the user-specific install directory might have anything to do with the issue? Any idea what might be causing the problem or how to debug?