Eu baixei o ruby on rails, mas ele diz que não está instalado.

0

Eu baixei o ruby on rails no Ubuntu 12.10 através deste tutorial link .

Eu fiz tudo e funcionou bem.

Eu verifiquei o rubi -v e ele retornou como ruby 2.0.0p0. Eu também verifiquei trilhos, rubygems e git eles voltaram bem.

Então eu fechei o terminal e abri um novo e tentei verificar a versão, mas isso voltou para o ruby

bimbola@ubuntu:~$ ruby -v The program 'ruby' can be found in the following packages: * ruby1.8 * ruby1.9.1 Try: sudo apt-get install

E isso veio para trilhos

bimbola@ubuntu:~$ rails -v The program 'rails' can be found in the following packages: * rails * ruby-railties-3.2 Try: sudo apt-get install

git ainda está bem embora

bimbola@ubuntu:~$ git --version git version 1.7.10.4

    
por Bimbola 04.04.2013 / 05:20

1 resposta

2

Tente e faça o seguinte, pode funcionar:

Abra um terminal e digite:

sudo apt-get install curl

Então

//In order to install RVM

curl -L get.rvm.io | bash -s stable --auto

recarregue o perfil bash:

. ~/.bash_profile

instale os seguintes pacotes:

sudo apt-get install build-essential openssl libreadline6 libreadline6-dev \
curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 \
libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison  \
subversion pkg-config

Agora instale o Ruby:

rvm install 1.9.3

digite:

rvm use 1.9.3

torná-lo padrão:

rvm --default use 1.9.3-p327

Finalmente instale o Rails:

gem install rails -v 3.2.9
    
por kalpetros 04.04.2013 / 05:50