728x90

Python 개발 과정에서 사용하던 Interpreter를 Jupyter Notebook의 Kernel로 추가하여 사용할 수 있습니다.
1. Kernel로 추가할 Python.exe를 선택.
본 글에서는 "C:\Users\phant\anaconda3\python.exe"를 Kernel로 추가하겠습니다.
2. CMD 열기 후 Kernel 등록을 위한 패키지 설치.
"C:\Users\phant\anaconda3\python.exe" -m pip install ipykernel
3. Kernel 등록.
"C:\Users\phant\anaconda3\python.exe" -m ipykernel install --user --name anaconda3_python3 --display-name "Python3.12 (anaconda3)"
"C:\Users\phant\anaconda3\python.exe" -m : Kernel로 등록할 Python Interpreter에 명령을 수행.
ipykernel install : Jupyter에서 사용하는 Python Kernel module인 ipykernel 명령
--user : 현재 사용자 계정에만 Kernel을 설치.
--name : Jupyter 내부에서 사용하는 식별 목적의 이름 ('anaconda3_python3').
--display-name : Jupyter Notebook에서 사용(선택) 시 표시되는 이름 ('Python3.12 (anaconda3)').
4. Jupyter Notebook에서 Kernel 선택 확인.


728x90
'작업 > Linux, etc' 카테고리의 다른 글
Windows FTP Server 만들기 (0) | 2025.04.05 |
---|---|
[Excel] txt 데이터 분배해서 셀에 담기 (1) | 2024.05.22 |
Virtual Box (rc= -5637) Error (Windows) (1) | 2024.05.21 |
matplotlib 한글 폰트 설정 (0) | 2024.05.08 |
VMware Workstation 17 Bridge로 IP 변경하기 (0) | 2024.01.06 |