프로그래밍/아나콘다

아나콘다 - 가상환경 구성 및 주피터 노트북 커널 연결

31weeks 2023. 11. 30. 12:24
728x90
반응형

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'을 주피터 노트북 커널에 연결

 

커널 연결 완료

 

 

주피터 노트북 - 커널 연결 확인

 

 

728x90


5. 커널 연결 해제
jupyter kernelspec uninstall "커널이름"
ex) jupyter kernelspec uninstall "test01"

-> 가상환경 'test01'을 주피터 노트북 커널에서 연결해제

 

 

6. 가상환경 삭제
conda remove --name 가상환경이름 --all
ex) conda remove --name test01 --all

-> 가상환경 'test01' 삭제

728x90
반응형