6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu 20.04 に Anaconda3 をインストールする

Last updated at Posted at 2022-11-13

はじめに

ubuntu20.04に Anaconda Distribution をインストールします。Anaconda DistributionはPythonのディストリビューションの一つで、パッケージ管理をGUIで行うことができる Anaconda Navigator が搭載されていることが特徴です。

インストール

下記リンクの「ダウンロード」からLinux用のインストーラーをダウンロードします。

ターミナルからインストーラーを実行します。

cd Downloads
bash Anaconda3-2022.10-Linux-x86_64.sh

以下のようなメッセージが複数回表示されるので、すべてエンターを押します(もしくは「Yes」を入力します)。

Welcome to Anaconda3 2022.10
 In order to continue the installation process, please review the license
 agreement.
 Please, press ENTER to continue
>>>

インストールできているか確認します。

which python
which ipython
which pip
which conda

バージョンを確認します。

conda -V

Navigatorを起動

conda環境を起動しターミナルからAnaconda Navigatorを起動します。

conda activate
anaconda-navigator

よく使うコマンド

conda環境の自動起動を有効or無効にします。

conda config --set auto_activate_base true
conda config --set auto_activate_base false

環境を切り替えます。

conda activate <パッケージ名>

conda環境を終了します。

conda deactivate
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?