Installation details, please have a look the Official Installation guide.

There are brief steps at the below.

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh

Arch Linux

paru -S miniconda3

Set with your shell

Find out your current shell name

If your shell is Bash or a Bourne variant, enable conda for the current user with

echo "[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrc

or, for all users, enable conda with

sudo ln -s /opt/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh

init shell

To initialize your shell, run

conda init <SHELL_NAME>

Currently supported shells are:

  • bash
  • fish
  • tcsh
  • xonsh
  • zsh
  • powershell