web-dev-qa-db-fra.com

Installation de RVM: erreur "Il y avait une erreur (23)."

J'essaie d'installer Ruby Version Manager (RVM) sans succès. Comment surmonter cette erreur que j'obtiens?

ubuntu@ip-172-31-0-20:/tmp$ rvm install Ruby-1.9.3-p484
Searching for binary rubies, this might take some time.
No binary rubies available for: ubuntu/14.04/x86_64/Ruby-1.9.3-p484.
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies.
Checking requirements for ubuntu.
Requirements installation successful.
Installing Ruby from source to: /usr/local/rvm/rubies/Ruby-1.9.3-p484, this may take a while depending on your cpu(s)...
Ruby-1.9.3-p484 - #downloading Ruby-1.9.3-p484, this may take a while depending on your connection...
Warning: Failed to create the file Ruby-1.9.3-p484.tar.bz2.part: Permission
Warning: denied
  0 9806k    0  1002    0     0  22905      0  0:07:18 --:--:--  0:07:18 23302
curl: (23) Failed writing body (0 != 1002)
There was an error(23).
Checking fallback: http://ftp.Ruby-lang.org/pub/Ruby/1.9/Ruby-1.9.3-p484.tar.bz2
Warning: Failed to create the file Ruby-1.9.3-p484.tar.bz2.part: Permission
Warning: denied
  0 9806k    0  1167    0     0   4300      0  0:38:55 --:--:--  0:38:55  4290
curl: (23) Failed writing body (0 != 1167)
There was an error(23).
Failed download
There has been an error fetching the Ruby interpreter. Halting the installation.
ubuntu@ip-172-31-0-20:/tmp$
38
Kimda K

Votre RVM est installé dans /usr/local/rvm - cela s'appelle souvent l'installation du système, cela nécessite que votre utilisateur ubuntu soit ajouté au groupe rvm:

rvm group add rvm "$USER"

oui utilisez $USER il sera remplacé par votre Shell par votre nom d'utilisateur

puis déconnectez-vous et connectez-vous, assurez-vous de:

id

que votre utilisateur est dans le groupe rvm,

enfin juste au cas où les autorisations de mise à jour pour RVM:

rvm fix-permissions
118
mpapis