Raspbian GNU / Linux 10(バスター)にR 4.0。*をインストールする方法は?

Raspbian GNU / Linux 10(バスター)にR 4.0。*をインストールする方法は?

私は指示に従ったと信じていますクレーンのウェブサイトRを最新バージョン(現在R 4.0.5)に更新しましたが、成功しませんでした。

私は走っている

$ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 10 (buster)"

Rバージョンの場合

$ R --version
R version 3.5.2 (2018-12-20) -- "Eggshell Igloo"

私がしたことは、最初次にリポジトリを追加する/etc/apt/sources.list

http://cloud.r-project.org/bin/linux/debian buster-cran40/ 

現在は次のとおりです。

deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
deb http://cloud.r-project.org/bin/linux/debian buster-cran40/

第二、現在の署名キーを取得して取得します。

$ sudo apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF'

第三

$ sudo apt update
$ sudo apt upgrade

今インストールしようとしましたが失敗しました。

$ sudo apt-get install r-base r-base-dev
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 (>= 4.0.5-1~bustercran.0) but 3.5.2-1 is to be installed
          Depends: r-recommended (= 4.0.5-1~bustercran.0) but it is not going to be installed
          Recommends: r-base-html but it is not going to be installed
 r-base-dev : Depends: r-base-core (>= 4.0.5-1~bustercran.0) but 3.5.2-1 is to be installed
E: Unable to correct problems, you have held broken packages.

この問題を解決するために依存関係の問題を修正し、

$ sudo apt-get autoremove

再インストールr-base-core

$ sudo apt update 
$ sudo apt remove r-base-core
$ sudo apt install r-base-core

そして使用注文する上記のCRANサイトから。

$ sudo apt install -t buster-cran40 r-base

しかし、まだRバージョン3.5.2があります。つまり、常にR 4.0.5の代わりにR 3.5.2を取得します。

私のラズベリーパイにR 4.0.5をどのようにインストールしますか?


編集する

追加情報:

$ apt search r-base-core
Sorting... Done
Full Text Search... Done
pandoc/stable 2.2.1-3+b2 armhf
  general markup converter

r-base/buster-cran40 4.0.5-1~bustercran.0 all
  GNU R statistical computation and graphics system

r-base-core/stable,now 3.5.2-1 armhf [installed]
  GNU R core of statistical computation and graphics system

r-base-core-dbg/stable 3.5.2-1 armhf
  GNU R debug symbols for statistical comp. language and environment

r-cran-date/stable 1.2.38-1+b1 armhf
  GNU R package for date handling

ベストアンサー1

妨害工作員をブルスアイにアップグレードしてみてください。 r-base-core >4 を使用できます。正常にインストールしました

おすすめ記事