0
0

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.

conda コマンドの整理

Posted at

conda コマンド一覧

自分の備忘録として作成しました..

  • 仮想環境を作成する
  • condaのアップデート
  • 仮想環境一覧を出す
  • 現在の仮想環境のパッケージの確認
  • 仮想環境の名前を変更する
  • 作成した仮想環境への切り替え
  • 仮想環境から出る
  • 仮想環境の削除
  • 現在の仮想環境の設定ファイルを書き出す
# 仮想環境を作成する
conda create -n env-x python=3.8
# conda アップデート
conda update conda
#仮想環境一覧を出す
conda info -e
#現在の仮想環境のパッケージの確認
conda list
# 仮想環境の名前を変更する
conda create -n NEW_NAME --clone PREVIOUS_NAME
conda remove -n PREVIOUS_NAME --all
#作成した仮想環境への切り替え
source activate ENV
# 仮想環境から出る
source deactivate 
# 仮想環境の削除
conda env remove -n env
conda remove --all

#現在の仮想環境の設定ファイルを書き出す
conda env export > env.yaml

参考文献

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?