Posts

Tuesday, 26 February 2019

How to install Anaconda on Ubuntu 16.04 and some commands for conda

How to install Anaconda on Ubuntu 16.04


curl -O https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh
bash Anaconda3-4.3.1-Linux-x86_64.sh
source ~/.bashrc

Simple Commands

conda list
See the list of all the packages available through the Anaconda.
conda create --name env1 python=3
Create a new environment named env1 with python3.
source activate env1
Activate the environment named env1.
source deactivate

No comments:

Post a Comment

[ new blog ]

new blog https://jihyo-jeon.github.io/