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
などを行いました)
同じ問題が発生した人のために、私は解決策を見つけました: buntu Bionic Beaver(18.04)にR 3.5.0をインストールできません
私はこれらのコマンドを順番に発行するだけでインストールできました。
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
から/etc/apt/sources.list
を一時的に削除しましたSudo apt-get autoremove Sudo apt-get update Sudo apt-get upgrade
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
を/etc/apt/sources.list
に戻しましたSudo apt-get update
Sudo apt-get install r-base
これで完了です(R 3.6.1をインストール)。
このソリューションは私にとってうまくいきました: https://linuxize.com/post/how-to-install-r-on-ubuntu-18-04/
Sudo apt install apt-transport-https software-properties-common
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/'
Sudo apt update Sudo apt install r-base
R --version