BodenmillerGroup/cytomapper

Missing system libraries on Ubuntu 20.04 for EBImage

jwindhager opened this issue · 5 comments

I know that this does not directly affect cytomapper, but probably good to document it somewhere.

On Ubuntu 20.04, the following system libraries are required for EBImage:

sudo apt-get install libfftw3-3 libfftw3-dev libtiff5-dev

Furthermore, for building the development version of cytomapper with vignettes, I needed to install:

sudo apt-get install libfontconfig1-dev

as well as the following R packages from CRAN:

install.packages(c("rmarkdown", "cowplot"))

and the following Bioconductor package:

BiocManager::install("BiocStyle")

Hmm, for the R packages they should be installed by default since they are listed under Suggests. How did you install the cytomapper devel?

Maybe those are ignored by devtools::install_github?

Did the following, as indicated in the README:

devtools::install_github("BodenmillerGroup/cytomapper", build_vignettes = TRUE)

Ok, I'll have a look. The build_vignettes parameter should trigger exactly this.

Alright, thanks for checking this. I have now updated the installation instructions in the README and started a cytomapper wiki with more detailed installation instructions.