R 프로젝트 저장소에서 Debian 10에 R을 설치하고 싶습니다. 다음 패키지가 필요합니다:
sudo apt install dirmngr -- install-recommends
sudo apt install software-properties-common apt-transport-https ca-certificates gnupg2
그런 다음 예를 들어 다음과 같은 경우https://www.digitalocean.com/community/tutorials/how-to-install-r-on-debian-10그리고 할
sudo apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF'
결국 다음과 같은 오류가 발생합니다.
Executing: /tmp/apt-key-gpghome.WVA4wGygKd/gpg.1.sh --keyserver keys.gnupg.net --recv-key E19F5F87128899B192B1A2C2AD5F960A256A04AF
gpg: keyserver receive failed: No name
답변1
해결책은 다음과 같은 대체 키 서버를 사용하는 것입니다 keyserver.ubuntu.com
.
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF'
그런 다음 관련 저장소를 추가하십시오.
sudo add-apt-repository 'deb https://cloud.r-project.org/bin/linux/debian buster-cran35/'
그러나 sudo apt update
다음과 같은 오류가 발생합니다.
Err:4 https://cloud.r-project.org/bin/linux/debian buster-cran35/ InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B8F25A8A73EACF41
Reading package lists... Done
W: GPG error: https://cloud.r-project.org/bin/linux/debian buster-cran35/ InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B8F25A8A73EACF41
E: The repository 'https://cloud.r-project.org/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.
이는 키가 추가되었음을 의미합니다.
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B8F25A8A73EACF41
그런 다음 다음을 사용하여 간단히 설치할 수 있습니다.
sudo apt install r-base-core r-base-dev
비슷한 문제를 겪고 있는 사용자에게 도움이 되길 바랍니다.