“Errno::EACCESS…permission denied” running compass watch

后端 未结 9 1121
清酒与你
清酒与你 2020-12-28 08:49

I just migrated my project files onto a new PC on the D: drive whilst my programs (Git, Node Js, Ruby, etc) are on the C: drive.

I have tri

9条回答
  •  眼角桃花
    2020-12-28 09:33

    I was having a similar issue and I was able to resolve it by un-installing both compass and sass:

    gem uninstall compass 
    gem uninstall sass
    

    Then, all you need to do is install compass:

    gem install compass
    

    sass is required as part of the compass install so there shouldn't be any need to install it separately. It appears that the issue I was facing was that there was a conflict between the version installed as part of the compass install and the one I installed manually.

提交回复
热议问题