Ryan Oliver Lanham
Ryan Oliver Lanham

Reputation: 461

Uninstalling GnuPG on Mac OS X

I recently tried installing GnuPG on MacOS High Sierra v10.13.3

After getting frustrated, I attempted to uninstall GnuPG by moving all folders I had downloaded associated with it to the Trash.

However, when I'm in terminal and I type in

    gpg

I get the response:

    gpg: WARNING: no command supplied. Trying to guess what you mean...
    gpg: Go ahead and type your message ...

At which point I have to use ctrl+z to stop the process, and which leads me to believe that GnuPG has not been fully uninstalled off my system.

Is there something I'm missing for uninstalling GnuPG? I'm wondering why I no longer receive a response like this:

    -bash: gpg: command not found

Thanks

Upvotes: 7

Views: 14071

Answers (2)

Alexey
Alexey

Reputation: 2164

If you installed gpgosx tools from sourceforge, try this:

sudo pkgutil --forget net.sourceforge.gpgosx 
sudo rm -rf /usr/local/gnupg-2.2

Upvotes: 6

phocks
phocks

Reputation: 3273

This worked for me:

Download the .dmg from here https://gpgtools.org/ then mount it and then double click the "Uninstall" icon.

It will ask you for your password and then it should uninstall the app and the commandline tool.

Upvotes: 13

Related Questions