From: Chad Fowler Date: 2005-09-18T22:28:00+09:00 Subject: Re: installing rubygems under Linux ------=_Part_17986_13576014.1127050056495 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On 9/17/05, Mark Volkmann wrote:=20 >=20 > I've recently started using Ruby under Linux as opposed to Windows. I > have Ruby 1.8.2 installed. I'm trying to install rubygems. >=20 > When I run "ruby setup.rb" I get "no such file to load -- rbconfig". >=20 > I think this is a LOAD_PATH problem. I didn't have a LOAD_PATH > environment variable defined (never needed it under Windows), so I > tried that. >=20 > LOAD_PATH=3D.:$RUBY_HOME:$RUBY_HOME/lib >=20 > Running "ruby setup.rb" gave the same result, so I tried "ruby -I > $LOAD_PATH setup.rb" and got "No such file to load -- syck". >=20 > Do I need to specify LOAD_PATH? What else could I be doing wrong? >=20 > -- Mark, rbconfig.rb is a standard part of the ruby distribution that=20 shouldn't be missing from your LOAD_PATH, so it looks like something weird is going on. Can you do this successfully: ruby -v -rpp -rrbconfig -e 'pp Config::CONFIG' If so, the output (rather long) might help us see what's up. --=20 Chad Fowler http://chadfowler.com http://rubycentral.org=20 http://rubygarden.org=20 http://rubygems.rubyforge.org (over one million gems served!) ------=_Part_17986_13576014.1127050056495--