After installing OS X El Capitan (10.11) my ruby compass is no longer working. After trying to install compass I recieve error message like this:
$ sudo gem install compass
ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/compass
How this can be fixed?
升级到OS X El Capitan(10.11)后,我遇到了相同的问题,但是尝试升级
sudo gem install sass
。张贴者将路径放入install命令的解决方案对我来说很有效,而安装指南针也可以安装sass,因此:sudo gem install -n /usr/local/bin compass
做到了。谢谢狮子座!