Why don't I install package "plotGoogleMaps"? - r

I ditn't install this package. An error has occurred:
install.packages("plotGoogleMaps")
Installing package into ‘C:/Users/ADMIN/Documents/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘plotGoogleMaps’ 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
Can you help me?

try install.packages("plotGoogleMaps", repos="http://R-Forge.R-project.org")

Related

nbastatR not working in RStudio build 353

Whenever I try to run the code install.packages("nbastatR") the following error pops up:
Installing package into ‘AppData/Local/R/win-library/4.2’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘nbastatR’ 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
I tried downloading from the Github repos through:
install.packages('devtools', lib='~/R/lib')
devtools::install_github('abresler/nbastatR')
But still no success.
Error:
Warning in install.packages :
package ‘nbastatR’ is not available for this version of R

Failed to install libgit2 on linux

install.packages("libgit2")enter image description here
Installing package into â/ldfssz1/ST_INFECTION/P17Z10200N0246_Phage_XMF/USER/luoyunzhe/software/Rlibraryâ
(as âlibâ is unspecified)
Warning message:
package âlibgit2-devâ 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
The error is right there - that package is not available for your version of R.
If you need that package I suggest you look it up on CRAN and find which versions of R are supported.

install arcgisbinding package in R version 3.5.0,get warning: as ‘lib’ is unspecified,package ‘‘arcgisbinding’ is not available

I try to install "arcgisbinding" package in R version 3.5.0. But I failed, get the following error and warning.
Installing package into ‘C:/Users/Lenovo/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘‘arcgisbinding’ is not available (for R version 3.5.0)
I also try to install this package in R version 3.4.3, get the same error and warning. I thought the main reason for this is the ‘lib’ is unspecified.
I am confused because that the "arcgisbinding" package can be installed on R >= 3.2, based on the introduction of the official website - PDF.
Could anyone help me? Thanks so much.
First, download the "arcgisbinding" package manually from GitHub: https://github.com/R-ArcGIS/r-bridge/releases/tag/v1.0.1.232.
Second, install this package in Rstudio using the menu "Tools">"install packages", and then choose the downloaded package archive. The installation is very fast.

How to install methylKit package in R version 3.2.3

I am trying to install methylKit package in R version 3.2.3 .
When I install this package it gives error
biocLite("methylKit, lib="")
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘methykit/’ is not available (for R version 3.2.3)
shall I have to really upgrade R version??
Please reply as I am very confused regarding this.
Thanks in advance!
Try this:
source("https://bioconductor.org/biocLite.R")
biocLite("methylKit")

Cant install package rwf on multiple R versions

I cant install package rwf. I am getting error:
Installing package into ‘C:/Users/This_user/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘rwf’ is not available (for R version 3.4.3)
Same situation happened for version 3.4.0. I cant figure out what is a problem here.
Thank you in advance.

Resources