如何从 github R 包中获取 tar.gz 文件
How to acquire tar.gz file from github R package
我需要从 github 获取 tar.gz 版本的 R 包。我不确定这怎么可能。从 Github 下载包会生成一个 zip 文件。
对于 CRAN 包,我将执行以下操作,以 ggplot2
为例:
download.packages(pkgs = "ggplot2", destdir = "package")
Github 回购 account/reponame
的 tar.gz,分支 branchname
可以在
找到
https://github.com/account/reponame/archive/branchname.tar.gz
向 jeroen/curl 致敬,这个技巧是一种无需通过 devtools(使用 curl)即可安装 curl 的方法
我需要从 github 获取 tar.gz 版本的 R 包。我不确定这怎么可能。从 Github 下载包会生成一个 zip 文件。
对于 CRAN 包,我将执行以下操作,以 ggplot2
为例:
download.packages(pkgs = "ggplot2", destdir = "package")
Github 回购 account/reponame
的 tar.gz,分支 branchname
可以在
https://github.com/account/reponame/archive/branchname.tar.gz
向 jeroen/curl 致敬,这个技巧是一种无需通过 devtools(使用 curl)即可安装 curl 的方法