<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Steps to install Conda on Linux !]]></title>
	<link>https://bioinformaticsonline.com/snippets/view/42820/steps-to-install-conda-on-linux?</link>
	<atom:link href="https://bioinformaticsonline.com/snippets/view/42820/steps-to-install-conda-on-linux?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/snippets/view/42820/steps-to-install-conda-on-linux</guid>
	<pubDate>Mon, 08 Feb 2021 01:11:44 -0600</pubDate>
	<link>https://bioinformaticsonline.com/snippets/view/42820/steps-to-install-conda-on-linux</link>
	<title><![CDATA[Steps to install Conda on Linux !]]></title>
	<description><![CDATA[<code>Download the installer:

Miniconda installer for Linux. ( https://docs.conda.io/en/latest/miniconda.html#linux-installers )
Anaconda installer for Linux. ( https://www.anaconda.com/products/individual )

$ chmod 777 Anaconda3-2020.11-Linux-x86_64.sh

$ ./Anaconda3-2020.11-Linux-x86_64.sh

#Follow the yes/no flags and finish till the end
#Check the installation

$ conda -V

A few other frequently used commands
# list all the conda environment available
conda info --envs  
# Create new environment named as `envname`
conda create --name envname
# Remove environment and its dependencies
conda remove --name envname --all
# Clone an existing environment
conda create --name clone_envname --clone envname</code>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

</channel>
</rss>