"Errno::Eaccess...Permission Denied" Running Compass Watch

Errno::EACCESS...permission denied running compass watch

To get it to work in 32 or 64bit windows, I done what Min Ren suggested but I also had to manually clean the gem repository (C:\Users\myusername\.gem\specs\rubygems.org%443\quick\Marshal.4.8) of all the sass and compass gemspec files after the uninstall steps. I also installed sass before compass.

gem uninstall compass
gem uninstall sass

manually clean .gem

gem install sass --version "3.2.10"
gem install compass --version "0.12.2"

Problems when creating Compass project (EACCES on line [ 891 ])

I was using the latest version (21.03.2014) of compass v.0.12.4...
Downgraded to v.0.12.2 everything worked fine!

Looks like a bug?

To downgrade:

$ gem uninstall compass 
$ gem uninstall sass
$ gem install compass -v 0.12.2
$ gem install sass -v <rev>

Yeoman error: Errno::EACCES on line [ 897 ] of C: Permission denied

I have found solution for this issue. I guess this might help with other similar problems running grunt server. This is what did it for me:

Uninstall SASS

gem uninstall sass

Uninstall COMPASS

gem uninstall compass

Install --pre COMPASS version

gem install compass --pre

Install --pre SASS version

gem install sass --pre

For some reason only running task in this order worked for me. I hope this helps.

Ruby + Compass: Permission Issues

The issue that you're having:

Errno::EACCES on line 25 of /Library/Ruby/Gems/1.8/gems/sass-3.2.10/lib/sass/../sass/cache_stores/filesystem.rb: Permission denied - /Applications/MAMP/htdocs/dt/resources/slice/html/.sass-cache/f2469bce8a00b9f9dd394c466620079eaa696535/print.scssc

indicates not that you're having a permissions problem in /Library/Ruby, but that you're having a permissions problem in /Applications/MAMP/htdocs/dt/resources/slice/html/.sass-cache/f2469bce8a00b9f9dd394c466620079eaa696535/. Correct the permissions in that directory and that problem should go away.

As to why you're having installation issues, that's a completely separate problem that I've got no idea about!

Permission issue using compass on Mac

Basically I just deleted that folder and started again and it worked, however I still don't understand why...

COMPASS CREATE Permissions denied

I've solved this issue by downgrading the compass version. then i've tryed to understand what was the error.
So the problem was version conflicts between sass 3.2.14 and 3.3.4 . compass 0.12.3 depends on 3.2.14 sass verison.
Have a look at this link Can't get sass + compass + susy installed due to version conflict

If you want to make things work with the latest compass version. you can uninstall all sass and compass version that you have. then look for the appropriate version between them.
This will things work perfectly.
And as a better solution you can work with this : http://bundler.io/ .

Kind regards.



Related Topics



Leave a reply



Submit