Trevor wrote: > Continuing to work with my RubyGems install issues, I setup a fresh > installation of Ubuntu Linux to test it out. All the latest Ubuntu > packages are installed ("hoary") with the available ruby packages > (ruby1.8-dev, ruby1.8, libruby1.8, libruby1.8-d). I've attempted to > install RubyGems, but get "No such file to load -- rubygems/builder > (LoadError)". The full output is listed below. I believe this is > related to my other problems on a sgi-solaris machine, if I could figure > out a fix for this than I may be able to fix those as well. Thanks for > any help or suggestions any one has to offer. This is a very > frustrating problem that's affecting me in multiple environments and I > have no idea where to start with it. > You did not have zlibc installed at the time you compiled/installed ruby. This caused ruby to not have zlibc which is required in order to install rubygems. Solution: 1. install zlibc (apt-get install zlibc) 2. recompile/reinstall ruby (zlibc must be installed when you do this) 3. install rubygems