대표적으로 virtualenv와 conda가 있음
1. 가상 환경 생성
conda create -n [가상 환경 이름] python=[파이썬 버전]
2. 가상 환경 호출
conda activate [가상 환경 이름]
3. 가상 환경 해제
conda deactivate