Complete removal of R-package Rcpp

I installed the package Rcpp

as follows:

    install.packages("/home/R_Libraries/Rcpp_0.11.3.tar.gz", repos = NULL, type="source")

      

I tried to remove the package using the following command:

    > remove.packages("Rcpp")
    Removing package from '/opt/vertica/R/library'
    (as 'lib' is unspecified)
    Updating HTML index of packages in '.Library'
    Making 'packages.html' ... done

      

But when I try to run the library command, it loads the Rcpp library.

    library(Rcpp)

      

Can anyone let me know how to completely remove the Rcpp package from the system?

+3


source to share


1 answer


Enter the command .libPaths()

and you will see something like this:

[1] "C:/Program Files/R/R-3.0.2/library" "C:/Program Files/R/R-3.1.1/library"

      



Go to those folders on your system and delete the package folder for Rcpp

+10


source







All Articles