我正在尝试使用Yeoman,我正在尝试在我的脚手架中使用Compass,但是当我运行grunt
时终端继续抛出此错误。
Warning: Couldn't find the `compass` binary. Make sure it's installed and in your $PATH Use --force to continue.
我认为这可能与我安装Compass的方式有关。我可能已经安装了两个副本,一个是通过RVM,另一个是通过另一种方法。
有谁知道如何解决此错误。任何帮助表示赞赏。
提前致谢!
答案 0 :(得分:0)
我在安装了apt-get和rvm版本的Ubuntu 14.04上遇到了同样的问题。我卸载了ubuntu包:
sudo apt-get uninstall ruby-compass
然后我按照一些说明here和here重新安装了RVM版本。 基本上是:
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm requirements
rvm install ruby
rvm use ruby --default
rvm rubygems current
gem install sass
gem install compass
然后我重新开始工作。