<?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: Install conda on remote server !]]></title>
	<link>https://bioinformaticsonline.com/snippets/view/41350/install-conda-on-remote-server?</link>
	<atom:link href="https://bioinformaticsonline.com/snippets/view/41350/install-conda-on-remote-server?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/snippets/view/41350/install-conda-on-remote-server</guid>
	<pubDate>Sat, 07 Mar 2020 00:52:01 -0600</pubDate>
	<link>https://bioinformaticsonline.com/snippets/view/41350/install-conda-on-remote-server</link>
	<title><![CDATA[Install conda on remote server !]]></title>
	<description><![CDATA[<code>Please take a look at the Anaconda repo archive page https://repo.continuum.io/archive/

and select an appropriate version that you like to install.

$ wget -c https://repo.continuum.io/archive/Anaconda3-vers.num-Linux-x86_64.sh
$ bash Anaconda3-version.num-Linux-x86_64.sh

$ wget -c https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
$ bash Anaconda3-5.0.1-Linux-x86_64.sh

OR try this

# Go to home directory
cd ~

# You can change what anaconda version you want at 
# https://repo.continuum.io/archive/
wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
bash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-4.2.0-Linux-x86_64.sh
echo &#039;export PATH=&quot;~/anaconda/bin:$PATH&quot;&#039; &gt;&gt; ~/.bashrc 

# Refresh basically
source .bashrc

conda update conda</code>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

</channel>
</rss>