aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2013-09-02 09:17:51 +0100
committerTom Christie2013-09-02 09:17:51 +0100
commit8b245fed14abff62a34e81f4ce8da1c396ba7712 (patch)
tree922f47a84fc9bf3060ad568166e69c1b3fd8773d /docs/tutorial/quickstart.md
parentd4f5fe99ba5f199dfea03de9f64438d4785a3582 (diff)
downloaddjango-rest-framework-8b245fed14abff62a34e81f4ce8da1c396ba7712.tar.bz2
Add windows virtualenv activate instruction
Closes #1075.
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index f15e75c0..06eec3c4 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -12,7 +12,7 @@ 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
- source env/bin/activate
+ source env/bin/activate # On Windows use `env\Scripts\activate`
# Install Django and Django REST framework into the virtualenv
pip install django