-
Notifications
You must be signed in to change notification settings - Fork 4
Install conda
Andrea Telatin edited this page Apr 8, 2020
·
3 revisions
Anaconda, and its lighter brother Miniconda (conda for short), are package managers. See the official website for more informations.
Check the miniconda download page. From there you can right-click on the appropriate installer and copy the remote URL to download it.
After you download the installer you can run it without any parameter for an interactive installation, or specify where to install it for an unattended installation.
Commands:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p ~/miniconda/
After installing, we need to activate it:
eval "$(~/miniconda/bin/conda shell.bash hook)"
conda init
Search for the n50
package in the bioconda channel, if found install it.
conda search -c bioconda n50
conda install -c bioconda n50
· Bioinformatics at the Command Line - Andrea Telatin, 2017-2020
Menu