ropensci / weathercan

R package for downloading weather data from Environment and Climate Change Canada
https://docs.ropensci.org/weathercan
GNU General Public License v3.0
102 stars 29 forks source link

weathercan unavailable on CRAN? #125

Closed AmeerDotHydro closed 3 years ago

AmeerDotHydro commented 3 years ago

seeing the following when installing weathercan

install.packages("weathercan")
> install.packages("weathercan")
Installing package into ‘C:/Users/AMUH/Documents/R/win-library/4.1’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘weathercan’ is not available for this version of R

A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

ThenI tried to see if the package is available over CRAN

ap <- available.packages()
"weathercan" %in% rownames(ap)
[1] FALSE

Any thought on how i should go about it? I was able to use R with no issues previously but since last two weeks there seems to be some issues.

boshek commented 3 years ago

Hi @AmeerDotHydro - just sorting out some issues over here #124. In the mean time you can install weathercan like this:

install.packages("weathercan", repos = "https://ropensci.r-universe.dev")

Closing as it this is a duplicate of #123