sublime text2无法编译coffee script
我在使用sublime text2编译coffee script的时候出现下面的提示!
我的node环境时通过homebrew安装的,coffee script不是全局安装,求教怎样才能实现编译
youtpot
9 years, 5 months ago
Answers
官方教我们这样做:打开
CoffeeCompile.sublime-settings
,
指定 coffee 路径
luguo
answered 9 years, 5 months ago
找到问题的解决方法了,这个问题好像是sublime text2的bug,sublime text2默认的加载路径是
/usr/bin
,
但是通过homebrew安装的路径默认是在
/usr/local/bin/node
,这个问题是:即使你设置coffee script的环境变量仍然不能生效,需要执行如下命令
sudo ln -s /usr/local/bin/node /usr/bin/node
stackoverflow上的解决方法
没人看的喜剧
answered 9 years, 5 months ago