I've decided to start fresh with ubuntu 10.10. I started with installing git and then installing rvm from the git repo. everything worked fine and I compiled and install ruby 1.8.7 and ruby 1.9.2
the gem is also installed and I run gem -v
but when run gem list or gem install rake I get the following error

ERROR:  Loading command: list (LoadError)
no such file to load -- zlib
ERROR:  While executing gem ... (NameError)
uninitialized constant Gem::Commands::ListCommand

any idea how to solve this issue? I also tried sudo apt-get install zlib1g zlib1g-dev build-essential libpq-dev with no luck

link|improve this question

65% accept rate
feedback

6 Answers

up vote 12 down vote accepted

When using rvm you can simple do steps that are shown here: link text

$ rvm pkg install zlib (or, older format, rvm package install zlib )

$ rvm remove 1.9.2
$ rvm install 1.9.2 --with-zlib-dir=~/.rvm/usr
link|improve this answer
You are my personal hero today. – Forkrul Assail Mar 22 '11 at 8:20
+1: Same goes for me. – Rekin Apr 10 '11 at 20:17
feedback

Or if using rvm, just re-install the ruby version once you have zlib1g-dev installed.

link|improve this answer
feedback

Try the following in your Ruby source after installing zlib1g-dev:

cd ext/zlib
ruby extconf.rb
make
sudo make install

Also see: http://rbjl.net/19-rubybuntu-1-installing-ruby-and-rails-on-ubuntu

link|improve this answer
feedback

Follow this article: http://www.dalpo.net/2010/11/09/installing-ruby-with-rvm-under-ubuntu-10-10/

Have a nice day!

link|improve this answer
feedback

First implode your rvm and try following steps in this link. might help you This might help you. http://www.jaikeerthi.in/2010/11/install-rails-ubuntu/

link|improve this answer
feedback

Please also see https://github.com/wayneeseguin/rvm/issues/420

I went through personally and verified installation capabilities on multiple distributions and platforms to make sure the process worked as expected.

The key thing to take away from this is: before you attempt to install any Ruby versions under RVM, you should always read the

rvm notes

command as this contains information that is displayed based on the platform you are currently running. This gives you the list of minimalistic requirements for all versions of a specific Ruby that you will need to install from your package manager. Keep in mind that if you plan on using several different versions like, say, an RBX ruby, an MRI ('normal' ruby), or a REE then you should install all those additional prerequisites taking care to carefully read the notes list.

NOTE: When you first install, or after every upgrade, be sure to execute:

rvm notes

each and every time you upgrade as we place important information regarding gotchas and requirements, as well as workarounds, here. We will be creating a 'issues' command for RVM shortly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.