diff --git a/tutorial/1-serialization.html b/tutorial/1-serialization.html index 2d7d724f6..7fb9e36fd 100644 --- a/tutorial/1-serialization.html +++ b/tutorial/1-serialization.html @@ -127,6 +127,7 @@ margin-top: 5px;
mkdir ~/env
+virtualenv --no-site-packages ~/env/djangorestframework
+source ~/env/djangorestframework/bin/activate
+
+Now that we're inside a virtualenv environment, we can install our package requirements.
+pip install django
+pip install djangorestframework
+
+*Note: To exit the virtualenv environment at any time, just type deactivate
. For more information see the virtualenv documentation.*
To get started, let's create a new project to work with.
+Okay, we're ready to get coding. +To get started, let's create a new project to work with.
django-admin.py startproject tutorial
cd tutorial