unable to install compass
OS Win7
Ruby 1.9.2
gem sources : http://rubygems.org/
gem update --system
gem install compass
throwing
ERROR: While executing gem … (Zlib::GzipFile::Error)
not in gzip format
unable to install compass
OS Win7
Ruby 1.9.2
gem sources : http://rubygems.org/
gem update --system
gem install compass
throwing
ERROR: While executing gem … (Zlib::GzipFile::Error)
not in gzip format
prashanth kumar wrote in post #1031219:
unable to install compass
OS Win7
Ruby 1.9.2gem sources : http://rubygems.org/
gem update --system
gem install compass
throwing
ERROR: While executing gem … (Zlib::GzipFile::Error)
not in gzip format
When you ask for help, always provide enough details so you don’t waste
your time or others.
Something like gem env
is a good start and increases your chances of
getting an answer.
C:\Users\Jon>gem env
RubyGems Environment:
Jon
Fail fast. Fail often. Fail publicly. Learn. Adapt. Repeat.
http://thecodeshop.github.com | http://jonforums.github.com/
twitter: @jonforums
prashanth kumar wrote in post #1031219:
unable to install compass
OS Win7
Ruby 1.9.2gem sources : http://rubygems.org/
gem update --system
gem install compass
throwing
ERROR: While executing gem … (Zlib::GzipFile::Error)
not in gzip format
Since your report is lacking some context (I recommend reading this link
[1])
I can guess the following.
#1, you’re behind a firewall
#2, this firewall is either blocking S3 downloads (coming from
rubygems.org)
#3, these downloads are then unrecognizable by RubyGems
I recommend take a look to your proxy settings and use either
–http-proxy switch of gem install
command or HTTP_PROXY environment
variable.
gem install compass --http-proxy http://user:pass@proxy:port/
or:
SET HTTP_PROXY=http://user:pass@proxy:port/
gem install compass
More info:
gem help install
Luis L.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs