Can't get sass + compass + susy installed due to version conflict

后端 未结 3 1588
别跟我提以往
别跟我提以往 2020-11-27 21:06

I\'m working with Sass, Compass and Susy on OSX / Terminal. But I can\'t get Susy to work together with Sass and Compass. What I\'ve done:

sudo gem install s         


        
3条回答
  •  忘掉有多难
    2020-11-27 21:26

    gem install compass --pre
    

    when you install compass lastest version will have error like:

    ERROR:  While executing gem ... (Gem::UnsatisfiableDependencyError)
        Unable to resolve dependency: 'compass (= 1.0.0.alpha.19)' requires 'compass-core (~> 1.0.0.alpha.19)'
    

    You should install compass-core first

    gem install compass-core
    

提交回复
热议问题