8

Warning in install.packages : package ‘EBImage’ is not available (for R version 3.2.4 Revised)

what to do now any help,please guide me.

aoles
  • 1,525
  • 10
  • 17
Varun Singh
  • 63
  • 1
  • 3
  • 13

2 Answers2

19

EBImage is distributed as part of the Bioconductor project. To install the package use

source("http://bioconductor.org/biocLite.R")
biocLite("EBImage")
aoles
  • 1,525
  • 10
  • 17
12

Install the latest release of R, then get the latest version of Bioconductor by starting R and entering the commands

install.packages("BiocManager") 
BiocManager::install("EBImage")
library(EBImage)

Install specific packages, e.g., “GenomicFeatures” and “AnnotationDbi”, with

BiocManager::install(c("GenomicFeatures", "AnnotationDbi"))
Adarsh Pawar
  • 682
  • 6
  • 15