我刚刚安装了 ubuntu 22.04。我可以安装 R sudo apt -y install r-base gdebi-core
:
$ R
R version 4.1.2 (2021-11-01) -- "Bird Hippie"
Copyright (C) 2021 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
但是当我尝试从下载的文件中安装 Rstudio 时,我得到:
$ sudo gdebi rstudio-2022.02.1-461-amd64.deb
[sudo] password for gigiux:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libssl1.0.0|libssl1.0.2|libssl1.1
一个流行的 deb 文件缺少一个基本库是很奇怪的,另外:
$ sudo apt install libssl1.1
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package libssl1.1
E: Couldn't find any package by glob 'libssl1.1'
在 Ubuntu 22.04 上安装 R 和 R studio 的正确程序是什么?
我尝试了一些似乎有效的方法。我编辑了 RStudio 的桌面条目文件,并将 --no-sandbox 选项标志添加到 Exec 行。当我单击 RStudio 应用程序图标(无论是桌面图标还是收藏夹栏中的启动器图标)时,执行此自动更改的命令。
因此,首先转到文件夹 /usr/share/applications。在那里您会找到一个名为 rstudio.desktop 的文件。使用文本编辑器打开此文件。内容大概是这样的:
现在,您所要做的就是将标志 --no-sandbox 添加到 Exec 行,就在 %F 之前,如下所示:
进展如何?
RStudio 目前正在准备修复该问题的版本。你可以下载他们的日常deb,它不是发布版本,但我测试了它,它运行良好:
https://dailies.rstudio.com/rstudio/spotted-wakerobin/desktop/jammy/
这是链接到上述 URL 的 RStudio 帖子(由 RStudio 员工撰写):
https://community.rstudio.com/t/dependency-error-when-installing-rstudio-on-ubuntu-22-04-with-libssl/135397/4
我希望所有后续的日报都能正常运行,但为了完整起见,我在 Ubuntu 22.04 上测试的运行良好的确切日报是“rstudio-2022.06.0-daily-341-amd64.deb”。
我在搜索互联网后尝试了这些代码,我发现这些代码有效
-accept 'y' 用于安装依赖项并触发带有 --no-sandbox 标记的 rstudio
这成功地为我工作
看起来上面的链接在某些情况下可能有效,但我们需要等待 RStudio 团队进一步修复和开发完全工作的 RStudio。
RStudio 每日 deb链接
在此之前
rstudio --no-sandbox
是启动应用程序的更好选择@Thiago Albuquerque,
--no-sandbox
由于权限问题,在 RStudio 执行程序“Exec=/usr/lib/rstudio/bin/rstudio %F”中的“%F”之前添加要求检查保存位置,因此无法在编辑时保存。如果可能,请为此提供解决方案,因为此策略可以绕过每次通过命令行手动执行。