cannot install ruby gems - zlib error - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:12:03Z http://stackoverflow.com/feeds/question/28243 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error 1 cannot install ruby gems - zlib error seanyboy 2008-08-26T14:47:52Z 2009-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&gt;gem install twitter ERROR: While executing gem ... (Zlib::BufError) buffer error C:\data\ruby&gt;gem update --system Updating RubyGems ERROR: While executing gem ... (Zlib::BufError) buffer error C:\data\ruby&gt;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 =&gt; true - :verbose =&gt; true - :benchmark =&gt; false - :backtrace =&gt; false - :bulk_threshold =&gt; 1000 - REMOTE SOURCES: - http://gems.rubyforge.org/ </code></pre> http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/28269#28269 0 Answer by mmattax for cannot install ruby gems - zlib error mmattax 2008-08-26T14:58:44Z 2008-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#30609 0 Answer by seanyboy for cannot install ruby gems - zlib error seanyboy 2008-08-27T16:42:52Z 2008-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#109708 1 Answer by srboisvert for cannot install ruby gems - zlib error srboisvert 2008-09-20T23:03:25Z 2008-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#110496 1 Answer by Asaf Bartov for cannot install ruby gems - zlib error Asaf Bartov 2008-09-21T07:46:59Z 2008-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#364207 0 Answer by Philip Ford for cannot install ruby gems - zlib error Philip Ford 2008-12-12T21:31:08Z 2008-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#1276882 0 Answer by Dave Everitt for cannot install ruby gems - zlib error Dave Everitt 2009-08-14T09:19:27Z 2009-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#1443191 1 Answer by Wout Neirynck for cannot install ruby gems - zlib error Wout Neirynck 2009-09-18T08:19:40Z 2009-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#1600501 0 Answer by rogerdpack for cannot install ruby gems - zlib error rogerdpack 2009-10-21T12:31:47Z 2009-10-21T12:31:47Z <p>install pure ruby zlib if all else fails</p>