programa - error de descarga devtools/GitHub
r repository (1)
Esto parece ser un problema con su repositorio. install_github
toma el archivo .zip asociado a su repositorio. Por alguna razón, el suyo parece ser un archivo .zip vacío, así que claramente no se puede instalar.
El tarball no parece estar vacío. Supongo que es solo un problema en Github que debería desaparecer con el tiempo.
A partir de hoy no puedo usar devtools
para instalar un paquete desde GitHub. No sé si el error está en:
- Yo
- devtools
- GitHub
Estoy usando install_github
siguiente manera y obtengo el siguiente 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
Intenté esto con un segundo repositorio y obtuve el mismo error. Sé que otros errores similares están relacionados con el certificado de seguridad.
Aquí está mi repo de github https://github.com/trinker/reports
Parece que no puedo descargar e instalar tampoco. Sin embargo, puedo instalar el archivo tar.gz producido por una compilación R.
¿Dónde está ocurriendo el error y por qué está ocurriendo?
PD: puedo instalar github de otras personas:
library(devtools)
install_github("findPackage", "Dasonk")
EDITAR
Puedo instalar mi propia qdap también:
library(devtools)
install_github("qdap", "trinker")