diff options
| author | Tom Christie | 2012-09-03 13:44:49 +0100 | 
|---|---|---|
| committer | Tom Christie | 2012-09-03 13:44:49 +0100 | 
| commit | d180e984e9779673c2d8aab3c65b4763432ba6b5 (patch) | |
| tree | c9c1b53da739bc6d0e5f4519fc577c3462f9da3c /docs | |
| parent | a25b4be4418a2a94e38a77b13cc234ca68e8322c (diff) | |
| download | django-rest-framework-d180e984e9779673c2d8aab3c65b4763432ba6b5.tar.bz2 | |
Neater virtualenv in tutorial
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorial/1-serialization.md | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index 13dcb9cc..0b6eac9d 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -9,8 +9,8 @@ This tutorial will walk you through the building blocks that make up REST framew  Before we do anything else we'll create a new virtual environment, using [virtualenv].  This will make sure our package configuration is keep nicely isolated from any other projects we're working on.      mkdir ~/env -    virtualenv --no-site-packages ~/env/djangorestframework -    source ~/env/djangorestframework/bin/activate +    virtualenv --no-site-packages ~/env/tutorial +    source ~/env/tutorial/bin/activate  Now that we're inside a virtualenv environment, we can install our package requirements.  | 
