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
반응형
'프로그래밍 > 아나콘다' 카테고리의 다른 글
아나콘다 - 파이캐럿으로 최적 모델 선택 (0) | 2023.11.30 |
---|---|
아나콘다 - 파이캐럿 설치 (0) | 2023.11.30 |
아나콘다 - 가상환경 TensorFlow 설치 (0) | 2021.06.22 |
아나콘다 - 가상 환경 생성 (0) | 2021.06.17 |
아나콘다 - 업데이트 및 버전 확인 (0) | 2021.06.16 |