본문 바로가기

파이썬3/jupyter

jupyter notebook의 연결 세션 알아내기

728x90
반응형

jupyter notebook을 실행하다보면 연결 세션 (커널, kernel)이 무엇인지 알고 싶을 때가 있다.

 

jupyter notebook들은 터미널에서 보면 ~~~~~/.local/share/jupyter/runtime/kernel-~~~~.json으로 되어있다.

 

연결된 json을 알아내는 방법은 실행 중인 노트북 파일에서 아래의 명령어를 입력하면 된다.

 

get_ipython().config

그러면 출력되는 것은 아래와 같이 나온다.

 

{'IPKernelApp': {'connection_file': '/home/xxxx/.local/share/jupyter/runtime/kernel-18083d5f-3462-4020-bb52-8b397e2481e9.json'},
 'Completer': {'use_jedi': False}}
728x90
반응형