ramnathv / rMaps

Interactive Maps from R
http://rmaps.github.io
389 stars 194 forks source link

Impossible to install rmaps #115

Open zave67 opened 7 years ago

zave67 commented 7 years ago

Hello, My company has a proxy and I cannot install rMaps with devtools (I have the error: Could not resolve host: api.github.com). I succeeded in installing rCharts with the alternative method:

library(downloader)
download("https://github.com/ramnathv/rCharts/archive/master.tar.gz", "rCharts.tar.gz")
install.packages("rCharts.tar.gz", repos = NULL, type = "source")

Is there an equivalent method to install rMaps?

Thanks a lot

louwjlabuschagne commented 6 years ago

Hi,

I followed the same way you install rCharts and succeeded, i.e.

library(downloader) download("https://github.com/ramnathv/rMaps/archive/master.tar.gz", "rMaps.tar.gz") install.packages("rMaps.tar.gz", repos = NULL, type = "source")