Skip to content Skip to sidebar Skip to footer

Gnupg Is Installed But Python Is Not Finding It In Runtime

pip install GnuPG says that the requirement is already satisfied but when I run a python script with GnuPG it says GnuPG is not installed.

Solution 1:

In order to fix my environment I had to uninstall pgp and python-gnupg using the pip uninstall commands and then ONLY install python-gnupg. I must have had multiple versions of pgp and python was using the wrong one.

Solution 2:

are you sure about the python and pip version?

try to see pip is referring to which python version and you are running script in which python version, verify if these are the same.

Post a Comment for "Gnupg Is Installed But Python Is Not Finding It In Runtime"