web-dev-qa-db-ja.com

apt-getアップグレードによりGPGエラーが発生する

このエラーを修正するにはどうすればよいですか?さまざまなコンピューターで長年使用しているPPAを介してpycharmをインストールしています。

W: GPG error: http://ppa.launchpad.net/mystic-mirage/pycharm/ubuntu xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY DD969F10A7E2BCD2
W: The repository 'http://ppa.launchpad.net/mystic-mirage/pycharm/ubuntu xenial InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: There is no public key available for the following key IDs:
DD969F10A7E2BCD2  
1
Edziu Eames

編集:aptに追加する必要があります:

Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DD969F10A7E2BCD2


最初の間違った答え:

パッケージの署名に使用するGPGキーを変更しました。これをターミナルで実行してみてください:

gpg --recv-keys DD969F10A7E2BCD2

3
Josh M.