[BioC] R installation error----please help

hpages at fhcrc.org hpages at fhcrc.org
Mon Apr 24 22:01:18 CEST 2006


Hi Jacob,

The package you are trying to install belongs to Bioconductor 1.8
hence it's aimed to work with R-2.3 only.
I can see that you are using R-2.2.1 so only Bioconductor 1.7
packages are guaranteed to work for you.

The easiest way to install a Bioconductor package is to use the
biocLite() function:

  > source('http://bioconductor.org/biocLite.R')
  > biocLite('affyio')

  Running bioCLite version 0.1  with R version  2.2.1

  Running biocinstall version 1.1  with R version  2.2.1
  dependency '‘affyio’' is not available

which means that there is no affyio package for your version of R
(affyio is new in Bioconductor 1.8).


But with R-2.3:

  > biocLite('affyio')

  Running bioCLite version 0.1  with R version  2.3.0

  Running biocinstall version 1.3  with R version  2.3.0
  trying URL  
'http://www.bioconductor.org/packages/bioc/1.8/src/contrib/affyio_0.99.3.tar.gz'
  Content type 'application/x-gzip' length 55561 bytes
  opened URL
  ==================================================
  downloaded 54Kb

  * Installing *source* package 'affyio' ...
  ...
  * DONE (affyio)

  The downloaded packages are in
          /tmp/RtmpqYhmFO/downloaded_packages
  >


Regards,

H.



More information about the Bioconductor mailing list