To date, I cannot use devtools to install a package from GitHub. I don't know if the error is:
I use install_github as follows and get the following error:
library(devtools) install_github("reports", "trinker") ## > library(devtools) ## > install_github("reports", "trinker") ## Installing github repo(s) reports/master from trinker ## Installing reports.zip from https://github.com/trinker/reports/archive/master.zip ## Error in function (type, msg, asError = TRUE) : ## transfer closed with outstanding read data remaining ## ## TRIED WITH SECOND REPO: ## ## > install_github("acc.roxygen2", "trinker") ## Installing github repo(s) acc.roxygen2/master from trinker ## Installing acc.roxygen2.zip from https://github.com/trinker/acc.roxygen2/archive/master.zip ## Error in function (type, msg, asError = TRUE) : ## transfer closed with outstanding read data remaining
I tried this with the second repo and got the same error. I know that other similar errors are related to the security certificate.
Here is my github repo https://github.com/trinker/reports
I can not download and install. I can install the tar.gz file created by the R structure though.
Where does the error occur and why does it occur?
PS I can install github for other people:
library(devtools) install_github("findPackage", "Dasonk")
EDIT
I can also install my own qdap:
library(devtools) install_github("qdap", "trinker")
source share