web-dev-qa-db-ja.com

Ubuntu 18.04 Linuxに最新のRバージョンをインストールできません

Ubuntu 18.04の最新の安定したRリリースをインストールできるようにしたいので、ubuntuバージョンをインストールしていたので、それを削除してから this リンクのようないくつかのガイドに従いました。

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などを行いました)

2
Corel

同じ問題が発生した人のために、私は解決策を見つけました: buntu 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をインストール)。

3
Corel

このソリューションは私にとってうまくいきました: 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. Aptリポジトリが追加されたので、パッケージリストを更新し、次のように入力してRパッケージをインストールします。

Sudo apt update Sudo apt install r-base

  1. インストールが成功したことを確認するには、Rバージョンを出力する次のコマンドを実行します。

R --version

1