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]]
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.packagesOr 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 LiggesOr run: R CMD REMOVE <package name> Using the Terminal. -Charlie