Miniconda をインストールする

Miniconda のダウンロード

以下のコマンドを使用して、最新版のMinicondaインストーラーをダウンロードします:

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

Minicondaのインストール

ダウンロードしたインストーラーを実行してMinicondaをインストールします:

bash Miniconda3-latest-Linux-x86_64.sh
Welcome to Miniconda3 py312_24.9.2-0

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 
<ENTER>
Do you accept the license terms? [yes|no]
>>>
yes
Miniconda3 will now be installed into this location:
/home/yamnor/miniconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/yamnor/miniconda3] >>>
/home/yamnor/opt/miniconda3
Do you wish to update your shell profile to automatically initialize conda?
This will activate conda on startup and change the command prompt when activated.
If you'd prefer that conda's base environment not be activated on startup,
   run the following command when conda is activated:

conda config --set auto_activate_base false

You can undo this by running `conda init --reverse $SHELL`? [yes|no]
[no] >>>
no
Thank you for installing Miniconda3!

Minicondaの更新

インストール後、以下のコマンドを使用してMinicondaとそのパッケージを最新の状態に更新します:

conda update --all
Posted :