maksimhorowitz / nflscrapR

R Package for Scraping and Aggregating NFL Data
522 stars 139 forks source link

Unable to install #124

Open mklas11 opened 4 years ago

mklas11 commented 4 years ago

Hello,

I am working on a 64bit version of Rstudio version.string R version 3.6.0 (2019-04-26)

and have followed the instructions in the post:

install.packages("devtools") devtools::install_github(repo = "maksimhorowitz/nflscrapR")

but get the following error message:

Error: Failed to install 'nflscrapR' from GitHub: (converted from warning) installation of package ‘C:/Users/AppData/Local/Temp/RtmpukwYZM/file127841e510eb/nflscrapR_1.8.1.tar.gz’ had non-zero exit status

Has anyone run into this issue and been able to solve or does anyone have any suggestions.. would really like to be able to use the nflscrapR!!

AndreasB1122 commented 4 years ago

I am getting this issue as well, if anyone has a fix let me know as well!

sventura commented 4 years ago

Sometimes this happens because you also need to update one of the dependency packages. Try:

install.packages("devtools", dependencies = TRUE)
devtools::install_github(repo = "maksimhorowitz/nflscrapR", dependencies = TRUE)