Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 486 Bytes

installation.md

File metadata and controls

16 lines (12 loc) · 486 Bytes

Installation

This section explains how to install django-commons-best-practices to use within your project. It assumes you have a working installation of Python 3.

  1. Create venv/virtualenv (python -m venv venv)
  2. Activate venv/virtualenv (source venv/bin/activate)
  3. Install django-commons-best-practices (pip install django-commons-best-practices)

All together now:

python -m venv venv
source venv/bin/activate
pip install django-commons-best-practices