Ubuntu 18.04 Linux에 최신 R 버전을 설치할 수 없습니다.

Ubuntu 18.04 Linux에 최신 R 버전을 설치할 수 없습니다.

Ubuntu 18.04용 최신 안정 R 릴리스를 설치하고 싶습니다. 우분투 버전이 설치되어 있으므로 이를 제거한 다음 다음과 같은 몇 가지 가이드를 따랐습니다.이것링크.

내가 무엇을 하든 다음을 실행하면 다음과 같은 결과가 출력됩니다 sudo apt-get install r-base.

sudo apt install r-base
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 r-base : Depends: r-base-core (>= 3.6.1-3disco) but it is not going to be installed
          Depends: r-recommended (= 3.6.1-3disco) but it is not going to be installed
          Recommends: r-base-html but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

뭐가 문제 야? (등등 다 해봤습니다 apt update.)

답변1

동일한 문제를 경험하는 사람을 위해 다음에서 해결책을 찾았습니다. Ubuntu Bionic Beaver(18.04)에 R 3.5.0을 설치할 수 없습니다.

간단히 다음 명령을 순서대로 실행한 후 설치할 수 있었습니다.

  1. 일시적 deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/으로 삭제됨/etc/apt/sources.list
  2. sudo apt-get autoremove sudo apt-get update sudo apt-get upgrade
  3. deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/다음 에 추가됨/etc/apt/sources.list
  4. sudo apt-get update
  5. sudo apt-get install r-base

이것이 전부였습니다(R 3.6.1 설치).

답변2

이 솔루션은 저에게 효과적이었습니다. https://linuxize.com/post/how-to-install-r-on-ubuntu-18-04/

  1. HTTPS를 통해 새 저장소를 추가하는 데 필요한 패키지를 설치합니다.

sudo apt install apt-transport-https software-properties-common

  1. CRAN 저장소를 활성화하고 다음 명령을 사용하여 CRAN GPG 키를 시스템에 추가합니다.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9

sudo add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/'

  1. 이제 적절한 저장소가 추가되었으므로 패키지 목록을 업데이트하고 다음을 입력하여 R 패키지를 설치하십시오.

sudo apt update sudo apt install r-base

  1. 설치가 성공적으로 완료되었는지 확인하려면 R 버전을 인쇄하는 다음 명령을 실행하십시오.

R --version

관련 정보