Skip to content

wsvincent/official-django-polls-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Official Django Polls Tutorial Code

Source code for the official Django Polls tutorial, which assumes you already have a virtual environment with Django installed.

How to Create a Virtual Environment

From the command line these are the commands for a new virtual environment named .venv in Windows or macOS.

# Windows
$ python -m venv .venv
$ .venv\Scripts\Activate.ps1
(.venv) $

# macOS/Linux
$ python3 -m venv .venv
$ source .venv/bin/activate
(.venv) $

Then install the latest version of Django.

(.venv) $ python -m pip install django

Want Help Learning Django?

Checkout out LearnDjango for dozens of free tutorials and premium courses to help you master web development with Python and Django.

About

Source code for the official Django Polls tutorial.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published