0

I am trying to install SASS on my mac, and am having a lot of issues. So the first time it didn't work, I figured out that i had to run this command "xcode-select --install". That worked, and installed. But when I went to install SASS using "sudo gem install sass", It didnt work, and i got this error:

SASS Install Error

Mureinik
  • 297,002
  • 52
  • 306
  • 350
  • 1
    Possible duplicate of [Can't install gems on OS X "El Capitan"](https://stackoverflow.com/questions/31972968/cant-install-gems-on-os-x-el-capitan) – Spartacus Nov 29 '17 at 19:43

1 Answers1

1

The problem, as your error message states, is that even sudo does not have access to /usr/bin in macOS's Rootless mode. Try installing it in userland:

gem install sass --user-install
Fissure King
  • 1,250
  • 7
  • 17