?
사용자

Python venv 생성 및 requirements.txt 설치 CLI

프로젝트별 독립적인 Python 환경을 구성하고 필요한 패키지를 빠르게 설치합니다. 새로운 Python 프로젝트 시작 시 유용합니다.

#python#venv#requirements#cli#automation
recipe.md

python -m venv venv && .\venv\Scripts\activate.bat && pip install -r requirements.txt

6
스크랩
21
좋아요
1
댓글
Python venv 생성 및 requirements.txt 설치 CLI