I want to use EBImage package but it says it is not available for my version of R
Asked Answered
N

2

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.

Negligent answered 14/5, 2016 at 4:40 Comment(1)
Can you please mark the below answer as solution and mark this question resolved?Rumpf
A
15

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"))
Asthenia answered 26/8, 2019 at 20:46 Comment(0)
C
19

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

source("http://bioconductor.org/biocLite.R")
biocLite("EBImage")
Chrome answered 24/5, 2016 at 10:40 Comment(0)
A
15

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"))
Asthenia answered 26/8, 2019 at 20:46 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.