본문 바로가기
컴퓨터쟁이/Python

jupyter notebook으로 ipykernel 생성하기

by 빙글빙글이 2022. 4. 1.
728x90
반응형

ipykernel이 필요한 이유는

conda에서 가상환경을 만들었을 때, 

그 가상 환경을 jupyter notebook kernel로 가져오기 위해서 필요하다. 

ipykernel 을 설치하고

 

아래 명령어에서 수정해야하는 부분은 옵션에서

--name내 가상환경의 이름을 쓰고

--display-name 은 자기가 알아보기 쉬운이름(jupyter notebook에서 kernel 찾을때 보이는 이름)

으로 설정해주면 된다. 

python -m pip install ipykernel
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"

참고 https://ipython.readthedocs.io/en/stable/install/kernel_install.html

 

Installing the IPython kernel — IPython 8.2.0 documentation

Important This documentation covers IPython versions 6.0 and higher. Beginning with version 6.0, IPython stopped supporting compatibility with Python versions lower than 3.3 including all versions of Python 2.7. If you are looking for an IPython version co

ipython.readthedocs.io

 

728x90
반응형