diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index d8258c0..6f74046 100644
a
|
b
|
tell Django is installed by running the Python interactive interpreter and
|
17 | 17 | typing ``import django``. If that command runs successfully, with no errors, |
18 | 18 | Django is installed. |
19 | 19 | |
| 20 | You will also need to check that the version of Django |
| 21 | you have installed matches the version of the tutorial. After importing Django |
| 22 | in the Python interactive interpreter you should type in ``django.get_version()``. |
| 23 | If the version displayed in the interpreter does not match the version for this tutorial |
| 24 | you can refer to the tutorial for your version of Django or update Django to the |
| 25 | newest version. |
| 26 | |
| 27 | See :doc:`How to install Django </topics/install>` for advice on how to remove older |
| 28 | versions of Django and install a newer one. |
| 29 | |
20 | 30 | .. admonition:: Where to get help: |
21 | 31 | |
22 | 32 | If you're having trouble going through this tutorial, please post a message |