-
Notifications
You must be signed in to change notification settings - Fork 0
Django
Luke Chen edited this page Mar 21, 2021
·
28 revisions
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
https://www.djangoproject.com/start/
https://docs.djangoproject.com/en/3.1/intro/tutorial01/
$ django-admin startproject mysite
$ pwd
/home/lchen154/workspace/django