Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions django_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ OK, we have all important dependencies in place. We can finally install Django!

## Installing Django

Now that you have your `virtualenv` started, you can install Django using `pip`. In the console, run `pip install django==1.7` (note that we use a double equal sign: `==`).
Now that you have your `virtualenv` started, you can install Django using `pip`. In the console, run `pip install django==1.7.1` (note that we use a double equal sign: `==`).

(myvenv) ~$ pip install django==1.7
Downloading/unpacking django==1.7
(myvenv) ~$ pip install django==1.7.1
Downloading/unpacking django==1.7.1
Installing collected packages: django
Successfully installed django
Cleaning up...
Expand Down