Miniconda/Anacondaアンインストール


概要

  • ディレクトリ削除すればよい

コマンド

#インストールディレクトリに移動
cd ~/
ls -l
$ ls -l
total 746096
-rw-rw-r--  1 futa futa 690850711 May 11  2022 Anaconda3-2022.05-Linux-x86_64.sh
-rw-rw-r--  1 futa futa  73134376 Apr 24 23:26 Miniconda3-latest-Linux-x86_64.sh
drwxrwxr-x 28 futa futa      4096 Apr 30 12:43 anaconda3
drwxrwxr-x  3 futa futa      4096 Apr 29 21:46 product
#アンインストール
rm -rf anadonda3
ls -l
$ rm -rf anaconda3
$ ls -l
total 746096
-rw-rw-r--  1 futa futa 690850711 May 11  2022 Anaconda3-2022.05-Linux-x86_64.sh
-rw-rw-r--  1 futa futa  73134376 Apr 24 23:26 Miniconda3-latest-Linux-x86_64.sh
drwxrwxr-x  3 futa futa      4096 Apr 29 21:46 product
  • 「-f」オプションで削除
    • license削除確認されるので、一気に削除の「-f」


Posted by futa