LoginSignup
0
1

More than 3 years have passed since last update.

Anacondaの仮想環境の構築について

Posted at

Anacondaの仮想環境周りのコマンド

仮想環境作成

conda create -n 環境名 python=バージョン

現在作成している環境確認

conda info -e

環境切り替え

conda activate 環境名 

仮想環境削除

conda remove -n 環境名 --all

環境の保存

conda env export -n 環境名 > 保存したいファイル名.yml
0
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
0
1