1. 가상 환경 세팅 python -m venv drftest drftest 폴더 > Script > activate cd drftest cd Script activate # 가상환경 실행 2. django와 django rest framework 설치 pip install django pip install djangorestframework pip install pygments # code 하이라이트를 위해서 사용할것 나는 가상환경과 project 보관하는 곳이 달라 프로젝트 저장하는 폴더로 따로 이동한 후 tutorial이라는 프로젝트를 만듦 cd .. cd training django-admin startproject tutorial # 튜토리얼 프로젝트 만들기 cd tutorial # 튜토리얼 프..