I would also like to know how to uninstall Bioconductor properly.
Thanks!
> -----Original Message-----
> From: Law, Annie
> Sent: Friday, December 17, 2004 2:57 PM
> To: 'bioconductor@stat.math.ethz.ch'
> Subject: uninstalling
>
>
> Hi,
>
> Just a quick question. I would like to get a fresh start.
> What is the best way uninstall AnnBuilder? Also, how would I
> go about uninstalling R?
>
> Thanks so much!
>
Law, Annie wrote:
> I would also like to know how to uninstall Bioconductor properly.
Probably your best bet is to use the remove.packages2() function in
reposTools. If you simply want to uninstall R, on windows, there is
usually an uninstall option under Start/Programs/R. On *nix, just rm
-rf
the whole directory containing R.
HTH,
Jim
>
> Thanks!
>
>
>>-----Original Message-----
>>From: Law, Annie
>>Sent: Friday, December 17, 2004 2:57 PM
>>To: 'bioconductor@stat.math.ethz.ch'
>>Subject: uninstalling
>>
>>
>>Hi,
>>
>>Just a quick question. I would like to get a fresh start.
>>What is the best way uninstall AnnBuilder? Also, how would I
>>go about uninstalling R?
>>
>>Thanks so much!
>>
>
>
> _______________________________________________
> Bioconductor mailing list
> Bioconductor@stat.math.ethz.ch
> https://stat.ethz.ch/mailman/listinfo/bioconductor
--
James W. MacDonald
Affymetrix and cDNA Microarray Core
University of Michigan Cancer Center
1500 E. Medical Center Drive
7410 CCGC
Ann Arbor MI 48109
On Fri, Dec 17, 2004 at 03:05:03PM -0500, James W. MacDonald wrote:
> Law, Annie wrote:
> >I would also like to know how to uninstall Bioconductor properly.
>
> Probably your best bet is to use the remove.packages2() function in
> reposTools. If you simply want to uninstall R, on windows, there is
> usually an uninstall option under Start/Programs/R. On *nix, just rm
-rf
> the whole directory containing R.
Generally, the standard way of uninstalling on Unix is to issue the
command
make uninstall
in the same directory where ``make install'' was run to install the
thing
(whether R or something else, this works as long as the makefile was
generated using the standard autoconf / automake stuff).
Normally, there is no "the whole directory", as different things are
installed into different directories (e.g. /usr/local/bin,
/usr/local/lib
etc.). Tracking down all these files and removing them is rather
difficult for larger packages such as R, and things left over could
mean that the new installation is not entirely "pristine".
If the source directory is not available any longer, the next best
thing
might be to get the tar.gz archive of the currently installed version,
unpack that, run the ``./configure'' command with the same flags that
were used for the installation, and run ``make uninstall'' from there.
The most important flag is ``--prefix'' in this case, of course.
Greetinx, Jan
--
+- Jan T. Kim
-------------------------------------------------------+
| *NEW* email: jtk@cmp.uea.ac.uk
|
| *NEW* WWW: http://www.cmp.uea.ac.uk/people/jtk
|
*-----=< hierarchical systems are for files, not for humans
>=-----*
> I would also like to know how to uninstall Bioconductor properly.
> > Just a quick question. I would like to get a fresh start.
> > What is the best way uninstall AnnBuilder? Also, how would I
> > go about uninstalling R?
Well, to answer your first (chronologically asked I mean) question
first -
you can either run "R CMD REMOVE AnnBuilder" or do it from within R
with
either remove.packages() or remove.packages2() (the latter is from
reposTools).
As for uninstalling Bioconductor - it is just a collection of
packages, so
you would need to remove the packages from Bioconductor which you have
installed using the means described above.