Created
September 14, 2023 04:50
-
-
Save hiraksarkar/28824d9943309544a454c595ac0441f7 to your computer and use it in GitHub Desktop.
Install infercnv in conda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mamba create -n r43 | |
mamba activate r43 | |
mamba install r-essentials=4.3 | |
mamba install r-rjags | |
export PKG_CONFIG_PATH=/home/user/miniconda3/envs/r43/lib/pkgconfig/:$PKG_CONFIG_PATH | |
# start R | |
R | |
# Install R package | |
install.packages("rjags") | |
install.packages("BiocManager") | |
BiocManager::install("infercnv") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment