Kali에 Python GPG를 설치할 수 없습니다.

Kali에 Python GPG를 설치할 수 없습니다.

pip를 사용하여 gpg를 설치할 수 없습니다.

# pip install gpg
Collecting gpg
  Downloading 
Complete output from command python setup.py egg_info:
Could not find gpgme-config.  Please install the libgpgme development package.

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-QzenGe/gpg/

설치 libgpgme하거나 libgpgme-dev원인을 시도하십시오

# pip install libgpgme
Collecting libgpgme
  Could not find a version that satisfies the requirement libgpgme (from versions: )
No matching distribution found for libgpgme

내 배포판에 버전이 없는데 gpg를 어떻게 설치하나요?


폴리스티렌:

Kali 4.6.0을 실행 중입니다.

# uname -a
Linux hostname 4.6.0-kali1-amd64 #1 SMP Debian 4.6.4-1kali1 (2016-07-21) x86_64 GNU/Linux

답변1

필요하므로 다음 개발 패키지를 gpgme-config설치해야 합니다 .libgpgme-devlibgpgme

apt install libgpgme-dev

pip전체 사용을 건너뛰고 패키지를 설치할 수도 있습니다 python-gpg(또는 python3-gpgPython 3을 사용하는 경우).

apt install python-gpg

관련 정보