0. python3 install python3가 기본적으로 설치되어 있어야 한다. 설치되어 있지 않다면 다음 명령을 이용하여 설치해주자. yum -y install python3 1. django install 이제 django를 설치한다. python3 -m pip install django 2. project create django-admin startproject myproject . .(현재 디렉토리)에 myproject라는 프로젝트가 생성된다. 3. django 실행 [root@localhost ~]# python3 manage.py runserver Watching for file changes with StatReloader Performing system checks... System ..