가상환경 설치
set CONDA_FORCE_32BIT=1 # 아나콘다 32bit 설정
conda create -n 가상환경이름 python=버전 anaconda # 가상환경 만들기
가상환경 삭제
conda env remove --n 가상환경이름
가상환경 복제
conda create -n 새 가상환경이름 --clone 복제할 가상환경이름
가상환경 조회
conda info --envs
conda env list
Jupyter Notebook
커널 확인
jupyter kernelspec list
커널 추가
python -m ipykernel install --user --name 가상환경이름 --display-name 표시할 커널이름
커널 삭제
jupyter kernelspec uninstall 가상환경이름
Markdown
Code
`...`
Code Block
```...```
Strikethrough
~strikethrough~
'Development > Python' 카테고리의 다른 글
Decorator (데코레이터) (0) | 2023.02.22 |
---|