Error to Installing SASS with Gem in Windows 8.1

error to installing sass with gem in windows 8.1

This command will fix it -- you need to change the code page of the current terminal.

chcp 1252

Cannot install SASS on windows 7 (64 bit)

Turns out the latest download of ruby is having issues with it's SSL cert .. Installed an older version - works a treat

Error while installing Rails gem on Windows

As mentioned in this link

Run this command:

chcp 1252

And run your command again.

SASS --watch issue on windows 8.1

This was a bug in Sass 3.4.2: https://github.com/sass/sass/issues/1409

It was fixed in Sass 3.4.3: http://sass-lang.com/documentation/file.SASS_CHANGELOG.html#343_4_september_2014

If you're using Bundler, make sure your Sass version is not restricted to 3.4.2 in your Gemfile. Recommended line is gem 'sass', '~> 3.4.3'. The run bundle update within your project root.

If you're not using Bundler, simply run gem update sass.

SSL Error When installing rubygems, unable to install rails gem in windows 10

now I got solution for this issue, using this link http://guides.rubygems.org/ssl-certificate-update/#manual-solution-to-ssl-issue

we need to add GlobalSignRootCA.pem this certificate in ssl_certs folder insted of AddTrustExternalCARoot-2048.pem
go through that above link.

certificate verify failed error when installing Ruby gems on Windows

I had this problem too. But using the older version is not the proper solution.

Here is the two solution help to fix this certificate error

1. Using the http instead of https will allow you to install the gem without that error

gem install bundler -r --source http://rubygems.org/

2. Update the certificate based on the solution provided in the below link

https://gist.github.com/luislavena/f064211759ee0f806c88



Related Topics



Leave a reply



Submit