Install R packages from github downloading master.zip

后端 未结 1 634
情深已故
情深已故 2020-12-08 11:00

I probably have some issues in my connectivity (some sort of blocks, dunno) and I can\'t install directly form gitHub

> install_github(\"asse         


        
相关标签:
1条回答
  • 2020-12-08 11:35

    This answer is just a refined version of my comments. Essentially you can install packages using devtools by unzipping a local zipfile downloaded from github, and then running the install function

    install("path/to/unzipped_pkg_zip_file")

    The latest dev version of devtools contains an install_local utility function that makes it easy to work directly with local zip files.

    0 讨论(0)
提交回复
热议问题