web-dev-qa-db-fra.com

Impossible d'installer rvm

Je veux installer RVM:

ubuntu@ext:~$ rvm
The program 'rvm' is currently not installed. You can install it by typing:
Sudo apt-get install Ruby-rvm
ubuntu@ext:~$ Sudo apt-get install Ruby-rvm
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package Ruby-rvm

Comment puis-je le faire?

4
Dmitry

Pour installer RVM stable avec Ruby, exécutez la commande suivante:

\curl -L https://get.rvm.io | bash -s stable --Ruby

Remarque : Il y a une barre oblique inverse avant curl. Cela évite les erreurs de comportement si vous l'avez aliasé avec la configuration dans votre fichier ~/.curlrc.

Source

11
SirCharlo

Suivez ces étapes:

gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

\curl -sSL https://get.rvm.io | bash
source ~/.rvm/scripts/rvm
0
Deepak Mahakale