Error installing SASS in Windows 8

1
  

ERROR: Could not find a valid gem 'sass' (> = 0), here is why:            Unable to download data from link - SSL_connect returned = 1> errno = 0 state = SSLv3 read server certificate B: certificate verify failed > (< a href="https://api.rubygems.org/latest_specs.4.8.gz"> link )

In the installation of the Google Web Starter Kit you need to install some components: Node, Ruby, Sass and Gulp. Among them what I can not install is SASS.

    
asked by anonymous 27.01.2015 / 13:34

1 answer

1

Note: First you have Ruby installed, download it here.

To successfully complete the SASS installation command follow the instructions below:

  • Searching for PowerShell

      

    On the Windows 8 start screen, type the word Windows PowerShell and click to run.

  • Run Administrator mode

      

    With PowerShell open, right-click the   powershell on the application taskbar, click " Run   as an administrator ".

    This message will appear: Do you want to allow the following program to make changes to this computer? Click " SIM "

  • Add URL certificate confirmation

    Type in PowerShell:

      

    gem sources -a link

    This message will appear:

      
        

    link is recommended for security link     Do you want to add this insecure source? [yn]

      

    Type " Y ", without the quotation marks, to accept.

  • Installing SASS by command line

    Type in PowerShell:

      

    gem install sass

    Ready! :)

  • 27.01.2015 / 13:34