i've installed ruby 1.8.4 (on MacOS X 10.4.3) in /usr/local
when i want to update the system :
sudo gem update --system
i get the following error message :
ruby: No such file to load -- rubygems (LoadError)
i've set some env vars :
% echo $RUBYOPT
-rrubygems
% echo $GEM_HOME
/usr/local
then, i'm stuck...
···
--
une bévue
Une bévue wrote:
i've installed ruby 1.8.4 (on MacOS X 10.4.3) in /usr/local
when i want to update the system :
sudo gem update --system i get the following error message :
ruby: No such file to load -- rubygems (LoadError)
i've set some env vars :
% echo $RUBYOPT -rrubygems
% echo $GEM_HOME /usr/local
then, i'm stuck...
Looks like you need to install Rubygems.
this is because of my PATH :
%which ruby
/usr/bin/ruby //the default install on MacOS X
changing the PATH order, makes it ok ))
···
Une bévue <pere.noel@laponie.com> wrote:
when i want to update the system :
sudo gem update --system
i get the following error message :
ruby: No such file to load -- rubygems (LoadError)
--
une bévue
unknown wrote:
i've installed ruby 1.8.4 (on MacOS X 10.4.3) in /usr/local
when i want to update the system :
sudo gem update --system
i get the following error message :
ruby: No such file to load -- rubygems (LoadError)
i've set some env vars :
% echo $RUBYOPT
-rrubygems
% echo $GEM_HOME
/usr/local
then, i'm stuck...
Obvious question ... have you installed rubygems into the new Ruby
instance? It looks like you might have a gems install hanging around
from an earlier version of Ruby (i.e. it is finding the "gem" command),
but its not finding the rubygems.rb library.
···
--
-- Jim Weirich
--
Posted via http://www.ruby-forum.com/\.
right and not right ))
not right because i've allready installed rubygems.
however only for ruby in /usr/local
on macos x their is a "builtin" ruby 1.8.2
and the PATH gaves the default ruby, i've changed the order for the path
and that's ok, /usr/local/bin/ruby is choosen...
···
Timothy Hunter <cyclists@nc.rr.com> wrote:
Looks like you need to install Rubygems.
--
une bévue
thanks i found it !
the default ruby wasn't the latest one ))
where i did install rubygems...
i had only to change the PATH from :
export PATH=PATH:/usr/local/bin:/Users/yvon/bin
to :
export PATH=/usr/local/bin:/Users/yvon/bin:PATH
now i get /usr/local/bin/ruby (the latest 1.8.4)...
···
Jim Weirich <jim@weirichhouse.org> wrote:
Obvious question ... have you installed rubygems into the new Ruby
instance? It looks like you might have a gems install hanging around
from an earlier version of Ruby (i.e. it is finding the "gem" command),
but its not finding the rubygems.rb library.
--
une bévue