R - Shiny - 我们在哪里可以找到 DT 包主版本的 .tar.gz 文件?
R - Shiny - Where can we find the .tar.gz file of the master version of DT package?
我需要在未连接到互联网的 Linux 服务器上安装 0.1.40 版本的 DT 包 (https://github.com/rstudio/DT)。因此我不能使用语句 devtools::install_github('rstudio/DT')
.
因此我需要获取DT_0.1.40.tar.gz文件来安装这个开发版的DT。
在哪里可以找到DT 0.1.40版本的tar.gz文件?
谢谢。
如果您对 CRAN 上的版本没问题,可以转到 DT
的 page on CRAN to download the package tarball. There is a link beside the text "Package source:". Here's the link 以获得 linux。
但是,您似乎想要当前不是 CRAN 上找到的版本的开发版本。您实际上可以使用此 link:
从 github 下载源代码作为 tarball
https://github.com/rstudio/DT/archive/master.tar.gz
然后将其转移到您的 linux 盒子和 install the package from source。
install.packages("/path/to/master.tar.gz", repos = NULL, type = "source")
我需要在未连接到互联网的 Linux 服务器上安装 0.1.40 版本的 DT 包 (https://github.com/rstudio/DT)。因此我不能使用语句 devtools::install_github('rstudio/DT')
.
因此我需要获取DT_0.1.40.tar.gz文件来安装这个开发版的DT。
在哪里可以找到DT 0.1.40版本的tar.gz文件?
谢谢。
如果您对 CRAN 上的版本没问题,可以转到 DT
的 page on CRAN to download the package tarball. There is a link beside the text "Package source:". Here's the link 以获得 linux。
但是,您似乎想要当前不是 CRAN 上找到的版本的开发版本。您实际上可以使用此 link:
从 github 下载源代码作为 tarballhttps://github.com/rstudio/DT/archive/master.tar.gz
然后将其转移到您的 linux 盒子和 install the package from source。
install.packages("/path/to/master.tar.gz", repos = NULL, type = "source")