diff options
| author | Tim Graham <timograham@gmail.com> | 2012-12-15 09:25:54 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2012-12-15 09:25:54 -0500 |
| commit | 1e5b0fc4d0c8b5b6005dd01359e8e0145a63992a (patch) | |
| tree | f9dd357b8a300d5c43c7e3aeede2acfe2b73911c /docs/intro/tutorial01.txt | |
| parent | b594e4923c20de34a3113f714d12e64e2e0295c8 (diff) | |
Fixed #19344 - Documented how to run django-admin in a virtualenv on Windows.
Thanks Hourann Bosci for the patch.
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 686cb5220c..9419f9c4eb 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -53,24 +53,7 @@ code, then run the following command: django-admin.py startproject mysite This will create a ``mysite`` directory in your current directory. If it didn't -work, see :doc:`Troubleshooting </faq/troubleshooting>`. - -.. admonition:: Script name may differ in distribution packages - - If you installed Django using a Linux distribution's package manager - (e.g. apt-get or yum) ``django-admin.py`` may have been renamed to - ``django-admin``. You may continue through this documentation by omitting - ``.py`` from each command. - -.. admonition:: Mac OS X permissions - - If you're using Mac OS X, you may see the message "permission denied" when - you try to run ``django-admin.py startproject``. This is because, on - Unix-based systems like OS X, a file must be marked as "executable" before it - can be run as a program. To do this, open Terminal.app and navigate (using - the ``cd`` command) to the directory where :doc:`django-admin.py - </ref/django-admin>` is installed, then run the command - ``sudo chmod +x django-admin.py``. +work, see :ref:`troubleshooting-django-admin-py`. .. note:: |
