본문 바로가기
Python

Ubuntu(우분투) Jupyter notebook 파이썬 가상환경의 커널 추가

by ahsung 2019. 12. 30.

virtualenv로 가상환경을 만들었다는 가정으로

 

source 가상환경dir/bin/activate

 

pip install ipykernel 

 

패키지 설치

 

python -m ipykernel install --user --name=[jupyter notebook에 추가될 커널이름]

tensorflow 커널이 추가된 모습

 

이 방법은 가상환경의 커널을  원래 홈 환경에서 설치한 jupyter 커널에 추가하는 방법이다.

만약 완전히 독립된 가상환경 jupyter를 사용하고 싶다면 가상환경에서 pip install jupyter를 사용하는 방법도 있다.

 

 

커널 삭제 방법

 

jupyter kernelspec uninstall [커널명]

 

~/.local/share/jupyter/kernel/에 설치되었던 환경이 사라진다.

댓글