` 1

1. conda create -n name(원하는이름) python=3.x

 

2. conda env list로 설치 확인

 

3. activate name로 가상환경 활성화

4. pip install ipykernel

5. python -m ipykernel install —user —name name(원하는이름) —display-name "name(원하는이름)"

 

6. jupyter kernelspec list로 kernel 만들어졌는지 확인

 

7. jupyter notebook

 

+ 가상환경 제거 

conda remove --name (가상환경 이름) --all

+ 커널 제거
jupyter kernelspec uninstall "가상환경"