본문 바로가기

Django

1) Django 시작하기 (Windows)

https://www.python.org/

 

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

파이썬 홈페이지에서 파이썬을 설치합니다.

 

https://www.anaconda.com/products/distribution

 

Anaconda | Anaconda Distribution

Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine.

www.anaconda.com

 

아나콘다 홈페이지에서 아나콘다를 설치합니다.

 

https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

vscode 홈페이지에서 vscode를 설치합니다.

 

작업할 폴더를 하나 생성한 뒤 우클릭 후 vscode로 열기를 누릅니다.

vscode 화면에서 Ctrl + Shift + `를 누르면 터미널 창이 아래에 나타납니다.

pip install django 명령어로 django를 다운로드합니다.

 

python 인터프리터가 잡혀있지 않은 경우 F1를 눌러 'python 인터프리터 선택'을 검색하여 설정해줍니다.

 

django-admin startproject myproject .   명령어를 터미널에 입력하면 myproject라는 이름의 폴더명으로 프로젝트가 현재위치에 생성됩니다.

 

다시 터미널에 python mange.py runser 명령어를 입력하면 다음과 같이 서버가 실행됩니다.

http://127.0.0.1:8000/  주소를 Ctrl + 좌클릭 혹은 브라우저에 입력하면 아래와 같이 성공적으로 설치했다는 문구를 볼 수 있습니다.

서버의 해제는 터미널창에서 Ctrl + c를 누르면 됩니다.

'Django' 카테고리의 다른 글

6) Django REST API (rest_framework)  (0) 2022.11.08
5) Django model 사용하기!  (0) 2022.11.01
4) Django template  (0) 2022.10.25
3) Django mysql 연동하기  (0) 2022.10.18
2) Django App 만들기  (0) 2022.10.12