An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100104/2aec506a/attachment.pl>
How to uninstall R packages
5 messages · wenjun zheng, Uwe Ligges, David Winsemius +2 more
On 04.01.2010 16:20, wenjun zheng wrote:
Dear all, I am puzzled that how can i uninstall a R package that have been installed earlier (especially in MacOS). Any suggestion will be appreciated.
?remove.packages Uwe Ligges
On Jan 4, 2010, at 10:23 AM, Uwe Ligges wrote:
On 04.01.2010 16:20, wenjun zheng wrote:
Dear all, I am puzzled that how can i uninstall a R package that have been installed earlier (especially in MacOS). Any suggestion will be appreciated.
?remove.packages
Or delete the folder in the appropriate ../library/.. folder. The default location is something like: /Library/Frameworks/R.framework/Versions/2.10/Resources/library/
Uwe Ligges
David Winsemius, MD Heritage Laboratories West Hartford, CT
?remove.packages
Guo-Hao Huang
--------------------------------------------------
From: "wenjun zheng" <wjzheng09 at gmail.com>
Sent: Monday, January 04, 2010 11:20 PM
To: <R-help at r-project.org>
Subject: [R] How to uninstall R packages
Dear all, I am puzzled that how can i uninstall a R package that have been installed earlier (especially in MacOS). Any suggestion will be appreciated. -- Wenjun [[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
On Mon, Jan 4, 2010 at 7:37 AM, David Winsemius <dwinsemius at comcast.net> wrote:
On Jan 4, 2010, at 10:23 AM, Uwe Ligges wrote:
On 04.01.2010 16:20, wenjun zheng wrote:
Dear all, I am puzzled that how can i uninstall a R package that have been installed earlier (especially in MacOS). Any suggestion will be appreciated.
?remove.packages
Or delete the folder in the appropriate ../library/.. folder. The default location is something like: /Library/Frameworks/R.framework/Versions/2.10/Resources/library/
Uwe Ligges
Or run: R CMD REMOVE <package name> Using the Terminal. -Charlie