Update quickstart.md

source env/bin/activate does not work on windows. Use env\Scripts\activate instead.
This commit is contained in:
tom-leys 2013-08-31 11:28:48 +12:00
parent f8101114d1
commit 82dbd19379

View File

@ -12,6 +12,10 @@ Create a new Django project named `tutorial`, then start a new app called `quick
# Create a virtualenv to isolate our package dependencies locally
virtualenv env
# Windows users:
env\Scripts\activate
# Linux users:
source env/bin/activate
# Install Django and Django REST framework into the virtualenv