0
1

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 3 years have passed since last update.

Django基本

Last updated at Posted at 2019-11-26

作業ディレクトリを作成

$ mkdir mysite

仮想環境を構築

$ cd mysite
$ python3 -m venv venv

仮想環境を有効化

$ venv/bin/activate

djangoのインストール

(venv)$ pip install django

プロジェクト作成

(venv)$ django-admin startproject config .

サーバを起動して動作確認

(venv)$ python manage.py runserver

ブラウザで127.0.0.1:8000へアクセス

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?