しょっちゅうやってるのでメモ代わりにまとめます
#インストール&ダウンロード
Dockerコンテナとかあまり余分なものは入ってない環境の場合以下のものが入ってないことがあるので全部インストール
sudo apt install bzip2
sudo apt install wget
sudo apt install git
以下でダウンロード&インストール
.bashrcに環境変数を書き込むのでsourc .bashrcをsource
必要があります
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash ./Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc
root権限なしでもインストールできるのが嬉しいところですね
$ conda -V
conda 4.5.12
こんな感じで出てくればOKです