1CATLISM, 101

Using conda1CATLISM, 101#

Installation instructions for different operating systems may be found on Miniconda official download page. Make sure you select the appropriate installation file for your Operating System and architecture (32 or 64 bit).

Install conda (through Miniconda) on Linux #

The following CLI commands are from the official documentation.

Command [c0.01]#
1mkdir -p ~/miniconda3
2wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
3bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
4rm -rf ~/miniconda3/miniconda.sh
[c0.01]

conda basic commands#

Example [e4.01]#
(base) catlism@debian:~$
Command [c4.01]#
conda create --name myenv
Command [c4.02]#
conda activate myenv
Example [e4.02]#
(myenv) catlism@debian:~$
Command [c4.03]#
conda deactivate
[c4.01-03]

Install pip through conda#

Command [c4.04]#
conda install -c anaconda pip
[c4.04]