Opened 17 years ago

Closed 17 years ago

#3159 closed defect (fixed)

Documentation says about "symlinking"

Reported by: anonymous Owned by: Jacob
Component: Documentation Version: dev
Severity: trivial Keywords: doc symlink django-admin
Cc: dev@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In the beginning http://www.djangoproject.com/documentation/django_admin/
says about manage.py

Consider symlinking to it from some place on your path, such as /usr/local/bin.

But there is NO "symlinking" in Windows.

Change History (4)

comment:1 by anonymous, 17 years ago

Cc: dev@… added
priority: highlow
Severity: majortrivial

Do you mean django-admin.py? You can follow the comment by Valter on the install documentation at: http://www.djangoproject.com/documentation/install/#c578

One trick to make life easier on Windows:

- append ".py" to PATHEXT (Settings - Control Panel - System - Advanced - Environment...) 
- append C:\Program Files\Python\Scripts to PATH

This way you can run django-admin.py by just typing "django-admin".

comment:2 by (none), 17 years ago

milestone: Version 1.0

Milestone Version 1.0 deleted

comment:3 by Simon G. <dev@…>, 17 years ago

Has patch: set
Keywords: django-admin added; djang-admin removed
Triage Stage: UnreviewedReady for checkin

Minor patch to make this a bit less platform dependant.

Index: docs/django-admin.txt
===================================================================
--- docs/django-admin.txt       (revision 4347)
+++ docs/django-admin.txt       (working copy)
@@ -17,7 +17,7 @@
 The ``django-admin.py`` script should be on your system path if you installed
 Django via its ``setup.py`` utility. If it's not on your path, you can find it in
 ``site-packages/django/bin`` within your Python installation. Consider
-symlinking to it from some place on your path, such as ``/usr/local/bin``.
+symlinking or copying it into your path, such as ``/usr/local/bin``.
 
 Generally, when working on a single Django project, it's easier to use
 ``manage.py``. Use ``django-admin.py`` with ``DJANGO_SETTINGS_MODULE``, or the

comment:4 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [4481]) Fixed #3159 -- documented how to work around a lack of symlinking functionality
on Windows (with respect to django-admin.py).

Note: See TracTickets for help on using tickets.
Back to Top