diff options
| author | Angeline Tan <angeline.agilemeister@gmail.com> | 2012-08-04 15:05:57 -0700 |
|---|---|---|
| committer | Julien Phalip <jphalip@gmail.com> | 2012-08-04 17:27:57 -0700 |
| commit | 5d4f993bb1f01c3a79194031827380dc763ce628 (patch) | |
| tree | 9e1bc3bfc996303a6a870ec529ad58eeabb39200 /docs/faq/troubleshooting.txt | |
| parent | 197863523a7631ae1d11d4fdf49b747a96e011a3 (diff) | |
Moved a note about django-admin.py errors from Tutorial Part 1 to a new FAQ Troubleshooting page. This is to avoid confusion for beginners.
Diffstat (limited to 'docs/faq/troubleshooting.txt')
| -rw-r--r-- | docs/faq/troubleshooting.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/faq/troubleshooting.txt b/docs/faq/troubleshooting.txt new file mode 100644 index 0000000000..f984be4bf5 --- /dev/null +++ b/docs/faq/troubleshooting.txt @@ -0,0 +1,16 @@ +=============== +Troubleshooting +=============== + +This page contains some advice about errors and problems commonly encountered +during the development of Django applications. + +"command not found: django-admin.py" +------------------------------------ + +:doc:`django-admin.py </ref/django-admin>` should be on your system path if you +installed Django via ``python setup.py``. If it's not on your path, you can +find it in ``site-packages/django/bin``, where ``site-packages`` is a directory +within your Python installation. Consider symlinking to :doc:`django-admin.py +</ref/django-admin>` from some place on your path, such as +:file:`/usr/local/bin`.
\ No newline at end of file |
