Closed smurpau closed 1 year ago
Groundhog is tested with version R>=3.2.0, so it should work. But evidently it is not in your case.
It seems like this is a come-back of issue #100 for R 3.5 and maybe you have an older version of groundhog in R-3.6.
Not sure why it is happening again, thought that groundhog V3.1.1 had fixed it, can't look into it for a long term solution but will try to debug your situation.
Can you please try downloading the .rds file 'by hand' with these lines, but replace "c:/groundhog_folder/" with whatever path you have for the files now?
download.file("https://groundhogr.com/cran.toc.rds", 'c:/groundhog_folder/cran.toc.rds',mode='wb') download.file("https://groundhogr.com/cran.times.rds", 'c:/groundhog_folder/cran.times.rds',mode='wb') download.file("https://groundhogr.com/gran.toc/windows35.rds", 'c:/groundhog_folder/windows35.rds', mode='wb')
After you do I think R-3.5 will work. And then, if you switched to R3-.6 and installed groundhog from scratch, to get the newer version, it should work as well.
OK, found the bug. It was indeed an imperfection in how issue #100 had been fixed, was working for R-3.5.0 but not for 3.5.x with x>0. Pushed the changes to Github and submitting the fix to CRAN right now, with v3.1.2
Thanks, that works with 3.5.3
When attempting
install.packages("groundhog")
in a fresh R 3.5.3 install (with RTools 3.5.0.4 installed and in the path), I receive the following error message:With R 3.6.3, it appears to install fine:
But then fails when installing a package e.g.:
Is there a minimum version of R that is supported by groundhog?