Problem installing SASS

2

I downloaded RUBY and installed myself by looking at "Add Ruby executable to your PATH"

Then I installed GEM, after that I try to install SASS but the following error appears in the image.

The version of my Ruby and GEM are in the image, SASS does not install.

    
asked by anonymous 17.06.2016 / 20:07

3 answers

1

I was able to solve the problem ..

I used the CMD

gem install -p link [program]

And there worked for installing SASS and COMPASS

    
22.06.2016 / 20:48
1

1 - Go to link and download gems sass

2 - Play them in the root of the Ruby installation folder (usually in C:)

3 - Still in the Ruby folder, in the explorer address bar, type cmd. and then hit Enter to open the Windows prompt right in that folder.

4 - Install Sass

gem install sass

Make sure you have installed them by

 sass -v
    
13.03.2017 / 03:18
0

Use the command below:

gem sources -a http://rubygems.org/

accepted using y

then try again:

gem install sass

If you're not sure yet, try to downgrade your ruby version.

    
18.06.2016 / 14:12