mac os npm install bower 安装成功
julauddeMacBook-Pro:austack-core julaud$ sudo npm install -g bower
Password:
/usr/local/Cellar/node/4.2.1/libexec/npm/bin/bower -> /usr/local/Cellar/node/4.2.1/libexec/npm/lib/node_modules/bower/bin/bower
bower@1.6.3 /usr/local/Cellar/node/4.2.1/libexec/npm/lib/node_modules/bower
julauddeMacBook-Pro:austack-core julaud$ bower
-bash: bower: command not found
julauddeMacBook-Pro:austack-core julaud$ ls
README.md gulp qiniu_cfg
bin gulpfile.js sampleapps
bower.json karma.conf.js server
build.xml node_modules test
client package.json
e2e protractor.conf.js
julauddeMacBook-Pro:austack-core julaud$ bower install
-bash: bower: command not found
已经全局安装了 可 运行 bower 就是找不到?
求大神指导一下呀
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
把
/usr/local/Cellar/node/4.2.1/libexec/npm/bin
这个路径加到 $PATH 即可. 因为平时用npm装的包,可执行程序会在这下面创建软链接,所以这些命令可以直接用。但是不知道你的这个目录为什么没在 $PATH.这样可以解决问题。不过你建议你再用nvm装下npm。之前那个npm可以不用管。如果装了curl的话,什么都不用改,直接
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
。然后你的npm的bin应该是自动加在$PATH的。参考:github