cannot install ruby gems - zlib error - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T09:12:03Zhttp://stackoverflow.com/feeds/question/28243http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error1cannot install ruby gems - zlib errorseanyboy2008-08-26T14:47:52Z2009-10-21T12:31:47Z
<p>I'm trying to install some Ruby Gems so I can use Ruby to notify me when I get twitter messages. However, after doing a "gem update --system", I now get a zlib error every time I try and do a gem install of anything. below is the console output I get when trying to install ruby gems. (along with the output from "gem environment").</p>
<pre><code>C:\data\ruby>gem install twitter
ERROR: While executing gem ... (Zlib::BufError)
buffer error
C:\data\ruby>gem update --system
Updating RubyGems
ERROR: While executing gem ... (Zlib::BufError)
buffer error
C:\data\ruby>gem environment
RubyGems Environment:
- RUBYGEMS VERSION: 1.2.0
- RUBY VERSION: 1.8.6 (2007-03-13 patchlevel 0) [i386-mswin32]
- INSTALLATION DIRECTORY: c:/ruby/lib/ruby/gems/1.8
- RUBY EXECUTABLE: c:/ruby/bin/ruby.exe
- EXECUTABLE DIRECTORY: c:/ruby/bin
- RUBYGEMS PLATFORMS:
- ruby
- x86-mswin32-60
- GEM PATHS:
- c:/ruby/lib/ruby/gems/1.8
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :benchmark => false
- :backtrace => false
- :bulk_threshold => 1000
- REMOTE SOURCES:
- http://gems.rubyforge.org/
</code></pre>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/28269#282690Answer by mmattax for cannot install ruby gems - zlib errormmattax2008-08-26T14:58:44Z2008-08-26T14:58:44Z<p>@seanboy</p>
<p>what OS are you running? Vista and gems are known for not playing nice...</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/30609#306090Answer by seanyboy for cannot install ruby gems - zlib errorseanyboy2008-08-27T16:42:52Z2008-08-27T16:42:52Z<p>A reinstall of Ruby sorted this issue out. It's not what I wanted; I wanted to know why I was getting the issue, but it's all sorted out. </p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/109708#1097081Answer by srboisvert for cannot install ruby gems - zlib errorsrboisvert2008-09-20T23:03:25Z2008-09-20T23:03:25Z<p>I just started getting this tonight as well. Googling turned up a bunch of suggestions that didn't deliver results</p>
<p>gem update --system</p>
<p>and some paste in code from jamis that is supposed to replace a function in package.rb but the original it is supposed to replace is nowhere to be found.</p>
<p>Reinstalling rubygems didn't help. I'm reinstalling ruby right now.........and it is fixed. Pain though.</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/110496#1104961Answer by Asaf Bartov for cannot install ruby gems - zlib errorAsaf Bartov2008-09-21T07:46:59Z2008-09-21T07:46:59Z<p>It most often shows up when your download failed -- i.e. you have a corrupt gem, due to network timeout, faulty manual download, or whatever. Just try again, or download gems manually and point <code>gem</code> at the files.</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/364207#3642070Answer by Philip Ford for cannot install ruby gems - zlib errorPhilip Ford2008-12-12T21:31:08Z2008-12-12T21:31:08Z<p>I had the same problem with Ruby 1.8.6 on Vista. I tried "gem update --system" as suggested above, and it worked for me. I could update Rails without the "buffer error."</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/1276882#12768820Answer by Dave Everitt for cannot install ruby gems - zlib errorDave Everitt2009-08-14T09:19:27Z2009-08-14T09:19:27Z<p>Try updating <a href="http://gnuwin32.sourceforge.net/packages/zlib.htm" rel="nofollow">ZLib</a> before you do anything else. I had a similar problem on OS X and updating <a href="http://search.cpan.org/~pmqs/IO-Compress-2.020/lib/Compress/Zlib.pm" rel="nofollow">Compress::Zlib</a> (a Perl interface to ZLib) cured it - so I think an old version of <a href="http://www.zlib.net/" rel="nofollow">ZLib</a> (is now 1.2.3) may be where your problem lies...</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/1443191#14431911Answer by Wout Neirynck for cannot install ruby gems - zlib errorWout Neirynck2009-09-18T08:19:40Z2009-09-18T08:19:40Z<p>Found it! I had the same problem on windows (it appeared suddenly without me doing an update, but whatever):</p>
<p>It has something to do with multiple conflicting zlib versions (I think).</p>
<p>In ruby/lib/ruby/1.8/i386-msvcrt, make sure that there exists a zlib.so file. In my case, it was already there. If not, you may try to install ruby-zlib.</p>
<p>Then go to ruby/lib/ruby/site_ruby/1.8./i386-msvcrt and delete the zlib.so file there.</p>
<p>In ruby/bin, there should be a zlib1.dll. For some reason my Ruby version did not use this dll. I downloaded the most recent version (1.2.3) and installed it there. I had to rename it to zlib.dll for it to be used.</p>
<p>And tada! Rubygems worked again.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/1600501#16005010Answer by rogerdpack for cannot install ruby gems - zlib errorrogerdpack2009-10-21T12:31:47Z2009-10-21T12:31:47Z<p>install pure ruby zlib if all else fails</p>