Debian Stableに最新のR統計パッケージをインストールすることはできません。

Debian Stableに最新のR統計パッケージをインストールすることはできません。

このページの指示に従って、Debian Stable(Buster)に最新のRパッケージをインストールしようとしています。https://cloud.r-project.org/

/etc/apt/sources.listに以下を追加しました。

deb https://cran.csiro.au/bin/linux/debian buster-cran35/

ただし、実行すると、sudo apt-get update次のエラーが発生します。

$ sudo apt-get update
Hit:1 http://deb.debian.org/debian buster InRelease                   
Hit:2 http://deb.debian.org/debian-security buster/updates InRelease  
Hit:3 http://deb.debian.org/debian buster-updates InRelease          
Hit:4 http://deb.debian.org/debian buster-backports InRelease        
Get:5 https://cran.csiro.au/bin/linux/debian buster-cran35/ InRelease [4,375 B]
Err:5 https://cran.csiro.au/bin/linux/debian buster-cran35/ InRelease
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FCAE2A0E115C3D8A
Reading package lists... Done
W: GPG error: https://cran.csiro.au/bin/linux/debian buster-cran35/ InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FCAE2A0E115C3D8A
E: The repository 'https://cran.csiro.au/bin/linux/debian buster-cran35/ InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

以下を試してもGPGエラーを削除できません。

sudo apt-get install debian-keyring

sudo launchpad-getkeys

sudo aptitude install debian-archive-keyring

このエラーをどのように解決できますか?

答え1

あなたはする必要がありますアーカイブキーのインポート、エラーメッセージに指定されたIDを使用します(ストレージを信頼すると仮定)。

apt-key adv --keyserver keys.gnupg.net --recv-key FCAE2A0E115C3D8A

関連情報