Hello,
Can anyone assist with how to I can install DiffBind and DESeq2 on the latest R version 4.0.4.
I have tried installing via the following means 1. source by downloading the source package (.tar.gz) on bio-conductor website
install.packages("~/Downloads/DESeq2_1.30.1.tar.gz", repos = NULL, type = "source")
Via BiocManager
if (!requireNamespace("BiocManager", quietly = TRUE))
- install.packages("BiocManager") > BiocManager::install("DiffBind")
install.packages(file.choose(), repos=NULL)
Thank you.
I have similar problem when installing DESeq2.
I have installed libcurl4-openssl-dev (it was already installed on my system). I don't understand part about: PATH and PKG_CONFIG_PATH. Everywhere I was looking for answer people assume you should know this. I would really appreciate if someone could explain me this.
See this post: https://stackoverflow.com/a/60878166
There is a link in it to a more detailed description of where the
.pc
file is installed. It is likely in/usr/lib/x86_64-linux-gnu/pkgconfig/libcurl.pc
location.Thanks a lot for your answer. The link you've shared and checking some Linux basics helped me to solve the problem! I run:
After this I was able to install DESeq2 without errors.
NOTE: To make these changes permanent you need to add them to .bashrc
Thank you for response @Kevin Blighe. Kindly find below the error messages for DESeq2, similar error was observed for DiffBind too.