Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

When installing packages from GitHub in R, sometimes you may encounter a connection timeout issue with GitHub. Here’s how to solve it.

Essentially, this involves loading the curl package and using curl to download the package. This might only work on Linux systems.

1
2
3
options(download.file.method = "libcurl")
library('curl')
install_github(PACKAGENAME)
  • If the installed package still cannot return an object, try manually downloading the package and then modifying the source code to install directly from the source.
1
install.packages(path_to_file, repos = NULL, type="source")

Comments

Please leave your comments here