venv
Table of contents
CLI Command : remove and reinstall venv
save pip list
pip freeze > requirments.txt
remove venv
rm -rf ./venv <span style="color: red">**Caution! : ~~rm -rf /*~~**</span>
reinstall venv
venv 폴더 생성
python -m venv /path/to/venv
가상환경 활성화
source /path/to/venv/bin/activate
module 설치
pip install -r requirements.txt