我在Mac OS 10.7.5上安装了节点v0.8.14。然后我用npm install -g grunt
安装了Grunt。
Node完美运行,Grunt没有。它一直在说: -bash: exec: grunt: not found
知道我缺少什么吗?
答案 0 :(得分:2)
默认情况下,npm安装到/ usr / local。在shell中尝试/usr/local/bin/grunt
。要允许您只需输入grunt
,请添加
export PATH="$PATH:/usr/local/bin"
到~/.profile
文件。