我使用下面的命令行安装:
$ sudo apt-get install r-base
$ sudo su - \
-c "R -e \"install.packages('shiny', repos='https://cran.rstudio.com/')\""
$ sudo apt-get install gdebi-core
$ wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-1.4.1.759-amd64.deb
$ sudo gdebi shiny-server-1.4.1.759-amd64.deb
错误讯息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libssl0.9.8
任何想法为什么?
前一段时间我跟着闪亮的website本身的命令行。现在它已经更改,无法使用当前说明进行安装。我也跟着这个guide,但根本没有运气。
有什么想法吗?
我正在使用ubuntu 16.04 现在顺便说一下。
答案 0 :(得分:4)
使用最新版本的rstudio使用最新版本的lib libl,它可能已安装在您的系统中: 对于执行以下命令:
$ sudo apt-get install gdebi-core
$ wget https://download2.rstudio.org/rstudio-server-1.1.383-amd64.deb
$ sudo gdebi rstudio-server-1.1.383-amd64.deb
$ sudo apt-get install gdebi-core
$ wget https://download2.rstudio.org/rstudio-server-1.1.383-i386.deb
$ sudo gdebi rstudio-server-1.1.383-i386.deb
答案 1 :(得分:2)
我也有这个问题,但是能够通过安装最新版本的闪亮服务器来解决这个问题。
您可以检查是否安装了libssl0.9.8:
dpkg --get-selections | grep ssl
可能不是(可能已被弃用)。
在tutorial中,它建议您使用闪亮服务器的latest version。看看您是否可以成功安装更新版本。
$ sudo apt-get install gdebi-core
$ wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-<latest-version>-amd64.deb
$ sudo gdebi shiny-server-<latest-version>-amd64.deb