diff options
| author | Tom Christie | 2014-01-14 20:36:04 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-01-14 20:36:04 +0000 |
| commit | 9d6129a95f896f5bc0c81800e01f136d59eb60cb (patch) | |
| tree | 4acaa5847893cfba39570107597f8557e9e0aed4 | |
| parent | 8f6983ee6efda28083c058913febc0632670dacd (diff) | |
| parent | 9a8082878a08bb87f5e71f245caedc3c9dfd3616 (diff) | |
| download | django-rest-framework-9d6129a95f896f5bc0c81800e01f136d59eb60cb.tar.bz2 | |
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
| -rw-r--r-- | docs/tutorial/1-serialization.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index 2298df59..979c4a3e 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -17,9 +17,8 @@ The tutorial is fairly in-depth, so you should probably get a cookie and a cup o Before we do anything else we'll create a new virtual environment, using [virtualenv]. This will make sure our package configuration is kept nicely isolated from any other projects we're working on. :::bash - mkdir ~/env - virtualenv ~/env/tutorial - source ~/env/tutorial/bin/activate + virtualenv env + source env/bin/activate Now that we're inside a virtualenv environment, we can install our package requirements. |
