nikfrank / dj-poll

learning django, writing course notes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

getting started with django

first I've installed python 3 which was not default on this mac

creating a virtual environment

$ cd code/dj-poll

$ python3 -m venv .

installing django

$ pip3 install django

$ python3 -m django --version to confirm django is properly installed (should be version 2.2.x)

making an app with django

$ django-admin startproject dj_poll

About

learning django, writing course notes


Languages

Language:Python 100.0%