Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 1.12 KB

python-conda.md

File metadata and controls

76 lines (53 loc) · 1.12 KB

python-conda

windows python conda usage (miniconda)


prerequisite

  • scoop

desc

(윈도우) 파이썬에서 conda 사용법 (miniconda)

inst

1. installing virtualenv

📂 terminal.ps

# install miniconda3
scoop install miniconda3
# after install
conda install -n root -c pscondaenvs pscondaenvs

2. creating a virtualenv

📂 terminal.ps

# > conda create -n (env-name)
# example:
conda create -n dl

3. activating a virtualenv

📂 terminal.ps

# > activate (env-name)
# example:
activate dl
  • check which python i'm using with this command :

📂 terminal.ps

scoop which python

leaving the virtualenv

deactivate

dep

ref

tags

#python, #pip, #virtualenv, #venv, #conda