在 LInux Mint 19.3 上安装 R4.0 时出现问题
Problem installing R4.0 on LInux Mint 19.3
我正在尝试在 Linux Mint 19.3 上安装 R 4.0,但收到以下错误消息:
The following packages have unmet dependencies:
r-base-core : Depends: libc6 (>= 2.29) but 2.27-3ubuntu1 is to be installed
Depends: libicu66 (>= 66.1-1~) but it is not installable
Depends: libreadline8 (>= 6.0) but it is not installable.
任何人都可以帮忙吗?
谢谢!
问题是 Mint 19.3 基于 Ubuntu 18.04,称为 bionic beaver。您可能在 /etc/apt/sources.list
文件中使用了错误的条目。 You need this one:
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/
因为 bionic
是适合 Mint 19.3 的 Ubuntu 版本。
您需要删除(或用 #
注释掉)任何其他 R 条目(如果存在)。如果出现错误,请检查位于 /etc/apt/sources.list.d/additional-repositories.list
.
的额外源文件
我正在尝试在 Linux Mint 19.3 上安装 R 4.0,但收到以下错误消息:
The following packages have unmet dependencies:
r-base-core : Depends: libc6 (>= 2.29) but 2.27-3ubuntu1 is to be installed
Depends: libicu66 (>= 66.1-1~) but it is not installable
Depends: libreadline8 (>= 6.0) but it is not installable.
任何人都可以帮忙吗? 谢谢!
问题是 Mint 19.3 基于 Ubuntu 18.04,称为 bionic beaver。您可能在 /etc/apt/sources.list
文件中使用了错误的条目。 You need this one:
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/
因为 bionic
是适合 Mint 19.3 的 Ubuntu 版本。
您需要删除(或用 #
注释掉)任何其他 R 条目(如果存在)。如果出现错误,请检查位于 /etc/apt/sources.list.d/additional-repositories.list
.