- 3.8.5
- python -m venv venv (venv 가상환경 생성 - manage.py 같은 위치)
- venv\Scripts\activate (venv 가상환경 실행)
- python -m pip install --upgrade pip (pip 업그레이드 실행)
- pip install -r requirements.txt (필요한 모듈 설치 - requirements.txt에 필요한 모듈 명시)
- python manage.py makemigrations
- python manage.py migrate
- python manage.py runserver