파이썬 가상환경 Python Environment
가상환경 리스트 조회
conda env list
가상환경 생성/삭제
# conda create -n 가상환경이름
conda create -n test
# conda create -n 가상환경이름 python=버전
conda create -n test python=3.6
# conda env remove -n 가상환경이름
conda env remove -n test
가상환경 활성화/비활성화
# conda activate 가상환경이름
conda activate test
conda deactivate
가상환경에서 패키지 설치/삭제 리스트 조회
# 패키지 리스트 조회
conda list
# 패키지 설치
# conda install 패키지이름
conda install tensorflow
# 패키지 업데이트
# conda update 패키지 이름
conda update tensorflow
# 패키지 삭제
# conda remove -n 가상환경이름 패키지이름
conda remove -n test tensorflow
base 가상환경 패키지 업데이트
conda update -n base -c defaults conda
주피터 노트북에서 가상환경 커널 이용
conda install nb_conda_kernels
conda install -n notebook_env nb_conda_kernels