아나콘다 가상환경 작성방법
anaconda Prompt를 실행한다.
conda create -n jupyter_env python=3.7
activate jupyter_env
위와 같이 가상환경을 이용할수 있다.
필요한 서드파티 패키지 설치
conda install -y jupyter
위와같이 사용하면 최신버전을 인스톨한다.
conda install -y jupyter=1.0.0
conda install -y notebook=5.0.0
conda install -y pandas=0.19.2
conda install -y bokeh=0.12.5
conda install -y matplotlib=2.0.1
위와같은 방법을 이용하면 패키지의 버전을 선택하여 설치할수 있다.
업데이트는 아래와 같이 가능하다.
conda update jupyter
패키지 삭제
conda remove jupyter
cd
mkdir notebook
cd notebook
jupyter notebook
위의 명령을 실행하면 아래와 같이 웹브라우저로 표시된다.
가상환경 종료
deactivate jupyter_env
작성된 환경을 삭제하고 싶은 경우
conda remove -y -n jupyter_env