최종 수정일 : 2023.08.26(토)
- anaconda3
- pyenv
conda env list #가상환경 리스트 조회
conda create -n {가상환경_이름} python={VERSION} #가상환경 생성
conda remove -n {가상환경_이름} --all #가상환경 삭제
conda activate {가상환경_이름} #가상환경 실행
conda deactivate {가상환경_이름} #가상환경 종료
conda list #현재 실행 중인 가상환경에 설치된 패키지 목록
pip freeze #가상환경에 설치된 패키지 보기
pip freeze > requirements.txt #가상환경에 설치된 패키지를 txt파일에 저장
pip install -r requirements.txt #requirements.txt 적힌 패키지와 버전으로 일괄 설치
pip uninstall -r requirements.txt -y #requirements.txt 적힌 패키지와 버전으로 일괄 삭제
python3.10 -m venv {가상환경_이름} # 가상환경 생성
cd {가상환경_이름} # directory 이동
source bin/activate # 가상환경 활성화