-
Notifications
You must be signed in to change notification settings - Fork 0
Anaconda
noweaver edited this page Oct 8, 2018
·
6 revisions
$ conda --version // 아나콘다 버전 확인
$ conda update conda // 아나콘다 업데이트
$ conda create -n jupyter-env python=3.6 // 아나콘다 가상환경 생성
$ conda create --name jupyter-env python=3.6 // 아나콘다 가상환경 생성
$ conda remove -y -name jupyter-env --all // 아나콘다 가상환경 제거
$ conda remove -y -n jupyter-env --all // 아나콘다 가상환경 제거
$ conda env list // 가상환경 리스트
$ conda info --envs // 가상환경 리스트
$ activate jupyter-env // 가상환경 활성화
$ deactivate jupyter-env // 가상환경 비활성화
$ conda install jupyter // jupyter 패키지 설치
$ conda list // 패키지 리스트 확인
$ conda update jupyter // 패키지 업데이트
$ conda remove jupyter // 패키지 제거
$ conda clean --all // 캐시 삭제
$ conda clean -a // 캐시 삭제