Acima não funciona na primeira vez, funciona na segunda vez.
Tente definir a versão do ruby para 2.0.0 para qualquer nova janela de shell.
Fazendo
$ rvm use 2.0.0 --default
dá
Warning! PATH is not properly set up, '/home/durrantm/.rvm/gems/ruby-1.9.3-p125/
bin' is not at first place,
usually this is caused by shell initialization files - check them for '
PATH=...' entries,
it might also help to re-add RVM to your dotfiles: 'rvm get stable --au
to-dotfiles',
to fix temporarily in this shell session run: 'rvm use ruby-1.9.3-p125'
.
Using /home/durrantm/.rvm/gems/ruby-2.0.0-p247
Então fazendo o mesmo
$ rvm use 2.0.0 --default
agora não dá nenhum erro, ou seja
$ rvm use 2.0.0 --default
Using /home/durrantm/.rvm/gems/ruby-2.0.0-p247
durrantm.../durrantm$
mas novas janelas ainda estão me dando ruby 1.9.3, não 2.0.0
Meu .bashrc
arquivo contém:
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
[[ -s "/home/durrantm/.rvm/scripts/rvm" ]] && . "/home/durrantm/.rvm/scripts/rvm"
Meu .bash_profile tem:
source ~/.profile
case $- in *i*) . ~/.bashrc;; esac
Tentando
rvm get stable
parece funcionar, mas no final de muitos shows verdes:
Could not update RVM, get some help at #rvm IRC channel at freenode servers.
Uma nova janela de terminal rvm list rubies
mostra isso:
$ rvm list rubies
Warning! PATH is not properly set up, '/home/durrantm/.rvm/gems/ruby-1.9.3-p125/bin' is not at first place,
usually this is caused by shell initialization files - check them for 'PATH=...' entries,
it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles',
to fix temporarily in this shell session run: 'rvm use ruby-1.9.3-p125'.
rvm rubies
=> ruby-1.9.3-p125 [ x86_64 ]
ruby-1.9.3-p194 [ x86_64 ]
* ruby-2.0.0-p247 [ x86_64 ]
# => - current
# =* - current && default
# * - default
~/.bashrc
,~/.bash_profile
, correndorvm get stable --auto-dotfiles
, re-checking~/.bashrc
,~/.bash_profile
e~/.profile
muitas vezes ... esta resposta, finalmente, fixa-lo! Ran:rvm reset
e se livrou dos avisos! (IMHO ... RVM é muito meticuloso em ser o primeiro no caminho ... Se eu definir outra coisa primeiro no meu caminho, eu sei o que estou fazendo)