Friday, May 15, 2020

How To Install Anaconda /Anaconda Navigator on Ubuntu 18.04

Video Tutorial - https://youtu.be/IzwM4SUgGcs

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages. It is commonly used for data science, machine learning, large-scale data processing, scientific computing, and predictive analytics.
Offcial Website -https://docs.anaconda.com/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Testing Environment: Ubuntu 18.04 LTS 
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install -y build-essential net-tools curl git software-properties-common python3-pip neofetch

curl https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh --output anaconda.sh
sha256sum anaconda.sh
bash anaconda.sh

source ~/.bashrc
anaconda-navigator
conda list

Setting Up Anaconda Environments - conda search "^python$"
conda create --name NEW_env python=3
conda activate NEW_env
conda info --envs
conda deactivate
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment