From 82dbd1937951b6d6dc8e350ddf159623a2083710 Mon Sep 17 00:00:00 2001 From: tom-leys Date: Sat, 31 Aug 2013 11:28:48 +1200 Subject: [PATCH] Update quickstart.md source env/bin/activate does not work on windows. Use env\Scripts\activate instead. --- docs/tutorial/quickstart.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index f15e75c04..0dd62559c 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -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