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

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

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

何をしても、 を発行すると次の出力が表示されます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. apt リポジトリが追加されたので、パッケージ リストを更新し、次のように入力して R パッケージをインストールします。

sudo apt update sudo apt install r-base

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

R --version

関連情報