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

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


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


As the instruction said "might need gpg2"

In mac, you can try install it with homebrew

$ brew install gpg2 


On Mac OSX 10.15,Even after installing gpg, i was getting gpg2 command not found

$ brew install gnupg gnupg2Warning: gnupg 2.2.23 is already installed and up-to-dateTo reinstall 2.2.23, run `brew reinstall gnupg`$ gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB-bash: gpg2: command not found

Instead, this worked for me

$ gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB