How to resolve "gpg: command not found" error during RVM installation?

JDillon522

I have a new mac pro (OS X 10.9.5) that I get to set up from scratch. I want to install RVM and the first thing it says to do is:

Install mpapis public key (might need gpg2 and or sudo)

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

When I tried I got:

gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
zsh: command not found: gpg

I've tried to find a good guide on how to overcome this that also looks trustworthy but I've had no luck.

Can someone explain what gpg is, why I dont already have it, and how do I get it the right way.

Jens Erat

GnuPG (with binary name gpg) is an application used for public key encryption using the OpenPGP protocol, but also verification of signatures (cryptographic signatures, that also can validate the publisher if used correctly). To some extend, you could say it's for OpenPGP what OpenSSL is for X.509 and TLS.

Unlike most Linux distributions (which make heavy use of GnuPG for ensuring untampered software within their package repositories), Mac OS X does not bring GnuPG with the operating system, so you have to install it on your own.

Possible sources are:

  • Package manager Homebrew: brew install gnupg gnupg2
  • Package manager MacPorts: sudo port install gnupg gnupg2
  • Install from GPGTools, which also brings GUI applications and integration in Apple Mail

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to resolve "ERROR: Specified cast is not valid." error during installation?

From Dev

Error running '__rvm_make -j 1' during rvm Ruby installation | openssl error

From Dev

Resolve error while installation!

From Dev

Error during Apache Installation

From Dev

Error During Rails Installation

From Dev

Error during Apache Installation

From Dev

Error during MediaProxy installation

From Dev

EACESS error during the installation

From Dev

how to resolve error in php during excel file upload

From Dev

Failed to resolve dependencies during grails plugins installation

From Dev

How to resolve PHP installation missing error while accessing a website?

From Dev

How to install rvm on Mac OS x 10.8.x. rvm: command not found after rvm installation

From Dev

Error during NearDuplicatesDetection 0.2.0 installation

From Dev

Database error during moodle installation

From Dev

An error occurred during the installation of assembly

From Dev

Error during Nodejs installation on Debian

From Dev

Error during mscore font installation

From Dev

How do I resolve the following error during "configure: error: XSLT configuration could not be found"

From Dev

how to resolve the cordova installation issue

From Dev

how to open CLI during installation

From Dev

How to resolve a "conflicting types" error during C++/C compilation using `python setup.py build`?

From Dev

RVM Ruby installation not successful

From Dev

RVM ruby installation fails

From Dev

Ruby installation issues with RVM

From Dev

RVM Ruby installation not successful

From Dev

problem in RVM installation

From Dev

Lamp installation error: unable to resolve host

From Dev

Lamp installation error: unable to resolve host

From Dev

How do I resolve a dependency during ConfigureServices?

Related Related

  1. 1

    How to resolve "ERROR: Specified cast is not valid." error during installation?

  2. 2

    Error running '__rvm_make -j 1' during rvm Ruby installation | openssl error

  3. 3

    Resolve error while installation!

  4. 4

    Error during Apache Installation

  5. 5

    Error During Rails Installation

  6. 6

    Error during Apache Installation

  7. 7

    Error during MediaProxy installation

  8. 8

    EACESS error during the installation

  9. 9

    how to resolve error in php during excel file upload

  10. 10

    Failed to resolve dependencies during grails plugins installation

  11. 11

    How to resolve PHP installation missing error while accessing a website?

  12. 12

    How to install rvm on Mac OS x 10.8.x. rvm: command not found after rvm installation

  13. 13

    Error during NearDuplicatesDetection 0.2.0 installation

  14. 14

    Database error during moodle installation

  15. 15

    An error occurred during the installation of assembly

  16. 16

    Error during Nodejs installation on Debian

  17. 17

    Error during mscore font installation

  18. 18

    How do I resolve the following error during "configure: error: XSLT configuration could not be found"

  19. 19

    how to resolve the cordova installation issue

  20. 20

    how to open CLI during installation

  21. 21

    How to resolve a "conflicting types" error during C++/C compilation using `python setup.py build`?

  22. 22

    RVM Ruby installation not successful

  23. 23

    RVM ruby installation fails

  24. 24

    Ruby installation issues with RVM

  25. 25

    RVM Ruby installation not successful

  26. 26

    problem in RVM installation

  27. 27

    Lamp installation error: unable to resolve host

  28. 28

    Lamp installation error: unable to resolve host

  29. 29

    How do I resolve a dependency during ConfigureServices?

HotTag

Archive