1. 가상환경 생성 conda create -n test01 python=3.10.9 : 파이썬 버전 3.10.9로 가상환경 'test01'생성 2. 가상환경 들어가기 conda activate test01 3. 가상환경 들어가서 주피터 설치 pip install jupyter notebook 4. 커널 연결 python -m ipykernel install --user --name 가상환경이름 --display-name "표시할 커널이름" ex) python -m ipykernel install --user --name test01 --display-name "test01" -> 가상환경 'test01'을 주피터 노트북 커널에 연결 5. 커널 연결 해제 jupyter kernelspec uninstal..