Installing rvm on ubuntu 14.04

I am trying to install rvm and I found the following message in the terminal after typing this: curl -L https://get.rvm.io | bash -s stable

GPG signature verification failed for '/home/ephraim/.rvm/archives/rvm-1.26.3.tgz' - ' https://github.com/wayneeseguin/rvm/releases/download/1.26.3/1.26.3 .tar.gz.asc '! try downloading signatures:

gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3

      

or if it doesn't work:

command curl -sSL https://rvm.io/mpapis.asc | gpg --import -

      

the key can be compared to:

https://rvm.io/mpapis.asc
https://keybase.io/mpapis

      

How can I get rid of these problems?

+3


source to share


3 answers


Follow the error instructions and run,



gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3

      

+6


source


You can upload signature and import manually.

Get signature:

curl -#LO https://rvm.io/mpapis.asc

      



Import signature:

gpg --import mpapis.asc

      

This will solve your problem.

+1


source


Depending on your needs, you may need to run:

gpg2 --keyserver hkp: //keys.gnupg.net --recv-keys D39DC0E3

Note gpg2

, not gpg

as stated in the instructions. More details here . This should be helpful. Make sure you run the command gpg

at login time as the same OS user doing the rvm installation.

0


source







All Articles