sathish k. wrote in post #1021926: > Hi, > > I am newbie to rails, i install ruby and dependences like ruby-dev > libopenssl-ruby1.8 irb ri rdoc but i try install rubygems is perfect , > but i update or install any gem means , it show the below error. > > > $ gem update --system > ERROR: While executing gem ... (Zlib::GzipFile::Error) not in gzip > format
> sorry cant indentify it what error ,pls if you what error suggest me... > > thanks in advance Have you installed the Zlib library. Seems the Zlib library is missing. # apt-get install zlib1g-dev (ubuntu or debian) This might help you. TML -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

