LoginSignup
4
3

More than 5 years have passed since last update.

Miniconda Tips

Last updated at Posted at 2018-05-27

自分用Minicondaメモ

環境立ち上げについてはこちら

Tips

環境の新規作成

python 3.6で環境作成するケース

conda create -n [Env name] python=3.6

既存の環境を立ち上げ

source activate [Env name]

現在の環境から離脱

source deactivate

CondaそのもののUpdate

conda update -n base conda

作成したConda環境にパッケージを追加

conda, pipどちらでインストールしてもよい.

conda
conda install **
pip
pip install **
4
3
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
4
3