パッケージのダウンロード¶
https://www.anaconda.com/download/ より、パッケージをダウンロードします。
最新パッケージとして、Python 3.x と Python 2.7.x がダウンロードできます。特別な理由がなければ、Python 3.x (上図では Python 3.7) をインストールします。
インストール¶
ダウンロードしたファイルは、次のように実行します。
$ bash ./Anaconda3-2020.02-Linux-x86_64.sh
Welcome to Anaconda3 2020.02
In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> # <------------------------------------ エンターを入力
===================================
Anaconda End User License Agreement
...
Do you accept the license terms? [yes|no]
[no] >>> yes # <--------------------------- yes を入力
Anaconda3 will now be installed into this location:
/home/user1/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/user1/anaconda3] >>> # <------------ エンターを入力
PREFIX=/home/user1/anaconda3
...
Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> # <------------------------------- yesを入力
コマンドライン環境の設定¶
ターミナルを終了し、もう一度起動すると、自動的に Conda環境 が有効となり、Anacondaが提供する python コマンドなどが使えるようになります.
Conda環境が自動的に有効にならないように設定する場合は、ターミナルで
conda config --set auto_activate_base false
を実行します。
この場合、Conda環境を利用する時には、次のコマンドでConda環境を有効化します。
conda activate
Condaについては、Conda コマンド を参照してください。