2
1

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 5 years have passed since last update.

Anaconda 仮想環境

Posted at

Anacondaでの仮想環境の作り方を、メモしておく

Condaコマンドで作成

ターミナルを開く

conda create -n 任意の仮想環境名 python=3.7

作成した仮想環境をアクティベート(有効化)

source activate 任意の仮想環境名

必要なライブラリ等のインストール

※アクティベート状態

conda install jupyter
conda install pandas
conda install numpy
conda install matplotlib

作成した仮想環境の一覧

conda env list

アクティベート状態のものに*(アスタリスク)がついてる

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?