git bash (리눅스 환경) 에서 명령어 실행
python -m venv 가상환경이름
source 가상환경이름/Scripts/activate
deactivate
pip install django
django-admin startproject 프로젝트이름
python manage.py runserver
python manage.py startapp 어플리케이션이름
python manage.py migrate
python manage.py makemigrations
python manage.py createsuperuser