Skip to content
Luke Chen edited this page Mar 21, 2021 · 28 revisions

Installation

https://www.djangoproject.com/download/

$ pip install Django==3.1.7
$ python
Python 3.8.5 (default, Sep  4 2020, 07:30:14) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> print(django.get_version())
3.1.7

Getting started

https://www.djangoproject.com/start/

Tutorial

https://docs.djangoproject.com/en/3.1/intro/tutorial01/

$ django-admin startproject mysite
$ pwd
/home/lchen154/workspace/django

Clone this wiki locally