Couldn't able to install ggpmisc in R Studio

93 views Asked by At

Couldn't able to install ggpmisc in R. Tried different combinations from previously reported suggestions but couldn't make it to work. Appreciate inputs.

Method 1:

install.packages("ggpmisc")
library(ggpmisc)

Console output: Error in library(ggpmisc) : there is no package called ‘ggpmisc’

Method 2:

foldername <- 'C:/Users/xx00/R/win-library/4.0'
install.packages(paste(foldername, 'ggpmisc', sep = '/'),
                 repos = NULL, type = "source")
library(ggpmisc, lib.loc = 'C:/Users/xx00/R/win-library/4.0')

Console output:

WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/xx00/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning: invalid package 'C:/Users/xx00/R/win-library/4.0/ggpmisc'
Error: ERROR: no packages specified
Warning in install.packages :
  installation of package ‘C:/Users/xx00/R/win-library/4.0/ggpmisc’ had non-zero exit status
> library(ggpmisc, lib.loc = 'C:/Users/xxoo/R/win-library/4.0')
Error in library(ggpmisc, lib.loc = "C:/Users/xxoo/R/win-library/4.0") : 
  there is no package called ‘ggpmisc’

Method 3:

download.packages('ggpmisc',destdir='C:/Users/xx00/R/win-library/4.0')

Output:

this downloaded tar.gz file but when manually extracted and saved it 
under the library didn't worked

Method 4:

pak::pkg_install("ggpmisc")

Console Output:

! rlang, vctrs, and tibble are loaded in other R sessions and have locked files
in your library. The installation will probably fail, unless you quit from this

R session:

* Rterm.exe (5336) in rstudio.exe (18316)

What do you want to do?

1. Quit these R sessions and try the installation again (Safest option.)
2. Terminate the listed R sessions. They may lose data!
3. Try the installation anyway.
4. Abort the installation.

? Your choice [1]: 3
i No downloads are needed, 17 pkgs (14.90 MB) are cached
i Building cli 3.6.1
Error: Could not find tools necessary to compile a package
0

There are 0 answers