Ravi
Ravi

Reputation: 3303

Removing R package Rcpp completely

I installed package Rcpp as follows:

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

I tried removing 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 the library command it seems to load Rcpp library.

    library(Rcpp)

Could someone let me know how to remove Rcpp package completely from the system?

Upvotes: 3

Views: 4804

Answers (1)

JasonAizkalns
JasonAizkalns

Reputation: 20463

Type in the command .libPaths() and you should see something like this:

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

Navigate to those folders on your system and remove package folder for Rcpp

Upvotes: 13

Related Questions