가상환경 설치
conda create -n [가상환경 이름] python=[버전 ex) 3.10]
가상환경 조회
conda info --envs
가상환경 제거
conda remove --name [가상환경 이름] --all
가상환경 Library 추출
pip freeze > requirments.txt
가상환경 추출 Library 설치
pip install -r requirment.txt
'둘 > [ Python ]' 카테고리의 다른 글
[Colab] library 설치 시, 조용히 설치 (0) | 2024.12.13 |
---|---|
pip list 업데이트 가능한 항목 확인 (0) | 2024.12.13 |
[Error] TypeError: __init__() got an unexpected keyword argument 'extra_args' (0) | 2023.05.16 |
[Pandas] DataFrame Row & Column Limitation (0) | 2023.05.08 |
Handling "inf", "-inf" in Python (0) | 2022.07.12 |