We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
현재 백엔드에서 Python 3.12 버전 사용 중
brew install python3.12
❕이후 모든 작업은 backend/에서 진행
backend/
cd backend
⚠️ 절대절대절대 가상환경은 git에 올리지 말 것 ⚠️
python3 -m venv [만들고자 하는 가상환경 디렉토리 이름]
source [가상환경 디렉토리]/bin/activate
requirements.txt 파일을 이용하여 패키지 설치
requirements.txt
python -m pip install -r requirements.txt
requirements.txt 최신화(git pull 등등) 후, Python 패키지 설치대로 진행
git pull
deactivate
python manage.py runserver