diff --git a/docs/intro/install.txt b/docs/intro/install.txt
index f9b122e..3cbc8d8 100644
|
a
|
b
|
Verifying
|
| 78 | 78 | --------- |
| 79 | 79 | |
| 80 | 80 | To verify that Django can be seen by Python, type ``python`` from your shell. |
| 81 | | Then at the Python prompt, try to import Django:: |
| | 81 | Then at the Python prompt, try to import Django: |
| | 82 | |
| | 83 | .. parsed-literal:: |
| 82 | 84 | |
| 83 | 85 | >>> import django |
| 84 | 86 | >>> print(django.get_version()) |
| 85 | | 1.5 |
| | 87 | |version| |
| 86 | 88 | |
| 87 | 89 | You may have another version of Django installed. |
| 88 | 90 | |
| … |
… |
That's it!
|
| 90 | 92 | ---------- |
| 91 | 93 | |
| 92 | 94 | That's it -- you can now :doc:`move onto the tutorial </intro/tutorial01>`. |
| 93 | | |
| 94 | | |
| 95 | | |
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index d24e19c..eebcf21 100644
|
a
|
b
|
The development server
|
| 127 | 127 | |
| 128 | 128 | Let's verify this worked. Change into the outer :file:`mysite` directory, if |
| 129 | 129 | you haven't already, and run the command ``python manage.py runserver``. You'll |
| 130 | | see the following output on the command line:: |
| | 130 | see the following output on the command line: |
| 131 | 131 | |
| 132 | | Validating models... |
| | 132 | .. parsed-literal:: |
| 133 | 133 | |
| | 134 | Validating models... |
| 134 | 135 | 0 errors found |
| 135 | 136 | January 06, 2013 - 15:50:53 |
| 136 | | Django version 1.5, using settings 'mysite.settings' |
| | 137 | Django version |version|, using settings 'mysite.settings' |
| 137 | 138 | Development server is running at http://127.0.0.1:8000/ |
| 138 | 139 | Quit the server with CONTROL-C. |
| 139 | 140 | |