$ python -m venv .venv
$ source .venv/bin/activate.fish # or 'activate' for bash
$ git init
$ vim .gitignore
exclude some files in .gitignore
.venv
> pip install django (OR python -m pip install django)
> pip list (to check django installed)
> pip freeze > requirements.txt (version backup)
> bat requirements.txt