LoginSignup
1
11

More than 5 years have passed since last update.

Anaconda : condaコマンドについて

Last updated at Posted at 2019-02-08

環境
OS : macOS Mojave
Anaconda : python3.6.7

conda 基本コマンド一覧

・仮想環境の作成

conda create -n (仮想環境名)

・仮想環境の作成(Pythonバージョン指定)

conda create -n (仮想環境名) python=(バージョン<例:3.5>)

・仮想環境の削除

conda remove -n (仮想環境名)

・仮想環境に入る

source activate (仮想環境名)

・仮想環境から出る

conda deactivate

・仮想環境の一覧

conda info -e

・現在の仮想環境へのパッケージの一覧

conda install (パッケージ名)

・現在の環境のパッケージ一覧

conda list

その他

・Pythonのバージョン確認

python --version
1
11
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
1
11