Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 568 Bytes

django.org

File metadata and controls

27 lines (19 loc) · 568 Bytes

Start

Environment Setting

$ python -m venv .venv
$ source .venv/bin/activate.fish  # or 'activate' for bash
$ git init
$ vim .gitignore

exclude some files in .gitignore

.venv

Django Initializing

> pip install django (OR python -m pip install django)
> pip list (to check django installed)
> pip freeze > requirements.txt (version backup)
> bat requirements.txt