try-django-admin-cookbook

A Django project which deals with customizing Django Admin Interface. It is impressed from https://books.agiliq.com/projects/django-admin-cookbook/en/latest/ and uses similar/different kind of examples.

View on GitHub

Create virtualenv, activate, install Django, pip freeze (installed dependencies listing with versions)

Back to home

(venv3.6.7) ➜  DjangoAdmin git:(master) ✗ python3.6 -m virtualenv venv3.6.7
Using base prefix '/Library/Frameworks/Python.framework/Versions/3.6'
New python executable in /Users/hygull/Projects/Python3/DjangoAdmin/venv3.6.7/bin/python3.6
Also creating executable in /Users/hygull/Projects/Python3/DjangoAdmin/venv3.6.7/bin/python
Installing setuptools, pip, wheel...
done.
(venv3.6.7) ➜  DjangoAdmin git:(master)source ./venv3.6.7/bin/activate  
(venv3.6.7) ➜  DjangoAdmin git:(master)(venv3.6.7) ➜  DjangoAdmin git:(master) ✗ pip install django               
Collecting django
  Downloading https://files.pythonhosted.org/packages/b1/1d/2476110614367adfb079a9bc718621f9fc8351e9214e1750cae1832d4090/Django-2.2.1-py3-none-any.whl (7.4MB)
     |████████████████████████████████| 7.5MB 2.0MB/s 
Collecting pytz (from django)
  Using cached https://files.pythonhosted.org/packages/3d/73/fe30c2daaaa0713420d0382b16fbb761409f532c56bdcc514bf7b6262bb6/pytz-2019.1-py2.py3-none-any.whl
Collecting sqlparse (from django)
  Using cached https://files.pythonhosted.org/packages/ef/53/900f7d2a54557c6a37886585a91336520e5539e3ae2423ff1102daf4f3a7/sqlparse-0.3.0-py2.py3-none-any.whl
Installing collected packages: pytz, sqlparse, django
Successfully installed django-2.2.1 pytz-2019.1 sqlparse-0.3.0
(venv3.6.7) ➜  DjangoAdmin git:(master)(venv3.6.7) ➜  DjangoAdmin git:(master) ✗ pip freeze
Django==2.2.1
pytz==2019.1
sqlparse==0.3.0
(venv3.6.7) ➜  DjangoAdmin git:(master)