参考文献
- 本記事は以下のサイトを参考に自身の備忘録として記録したものです。
- How to Install Anaconda on Ubuntu 18.04
1. Anaconda のインストールスクリプトをダウンロード
- アーカイブから環境に合ったスクリプトを選択
- ダウンロード
$ cd /tmp
$ curl -O https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
2. インストールスクリプトを実行
$ bash Anaconda3-2020.02-Linux-x86_64.sh
- Enter を押し続ける
Do you accept the license terms? [yes|no]
>>> yes
Anaconda3 will now be installed into this location:
/home/<user_name>/anaconda3
>>> [Enter] そのまま続行 / [Ctrl+c] インストール中断 / [任意のPATH] インストール場所を変更
- インストール開始
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
>>> yes
- yes: 今後 python が Anaconda から起動される
- no: 特に変化なし(※おそらく)
以上