我跑
时没有出现错误yo angular appname
我已经安装了yeoman,我正在使用ubuntu 12.10
答案 0 :(得分:3)
重新安装yeoman
sudo npm install -g yo
注意安装的最后一部分。
请注意,对于我的输出,
/usr/bin/yo -> /usr/lib/node_modules/yo/bin/yo
我的解决方案是
sudo nano ~/.bash_profile
在〜/ .bash_profile
中export PATH=/usr/bin:/usr/lib/node_modules:$PATH
基本上添加yo
所属的路径
然后执行.bash_profile
. ~/.bash_profile
现在您可以运行yo angular appname
答案 1 :(得分:0)
如果您已将nodejs更新为最新版本(Mine is v0.10.33)
打开/usr/lib/node_modules/yo/cli.js
并将#!/usr/bin/env node
更新为#!/usr/bin/env nodejs