install python anaconda on ubuntu

Insight: Install Python Anaconda On Ubuntu In 2018

Anaconda is a free, easy-to-install opensource package manager, environment manager and Python distribution with a collection of 1,000+ open source packages with free community support and is commonly used for large-scale data processing, scientific computing, and predictive analytics, serving data scientists, developers, business analysts, and those working in DevOps. We can easily install and manage various tools like Scikit-learn, TensorFlow and Scipy with the help of conda.

 

How To Install Python Anaconda On Ubuntu In 2018

In this tutorial, We will guide you through installing the Python 3 version of Anaconda on Ubuntu.

How To Install Python Anaconda On Ubuntu In 2018

At first jump into the home directory before downloading the required file. Open a terminal and type the following command to install Python 3 Anaconda on Ubuntu

cd~
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-5.0.1-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc

# Refresh basically
source .bashrc

conda update conda

READ More Relevant Stuff:  How To Fix No route to host SSH Error In Linux [Solved]

Leave a Reply

Your email address will not be published. Required fields are marked *