0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Djangoの導入からサーバー起動

Posted at

Djangoの導入からサーバー起動

プロジェクトの開始

任意の場所にプロジェクトを作成する。

C:\work> django-admin startproject settings

アプリの追加

作成するアプリを追加する

C:\work\プロジェクト名> django-admin startapp "アプリ名"

仮想環境の作成

仮想環境を作成
今回は「venv」という名前の仮想環境を作成する

C:\work\プロジェクト名> python -m venv venv

仮想環境に入る

プロジェクト名> .\venv\Scripts\activate

Djangoのインストール

(venv)プロジェクト名> pip install --upgrade pip
(venv)プロジェクト名> pip install django

サーバーを起動する

(venv)プロジェクト名> python manage.py runserver

Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).

July 03, 2022 - 20:51:51
Django version 4.0.5, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

http://127.0.0.1:8000/にアクセスし下記の画面が表示されれば成功している。
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?