Ticket #13279: explicit-ln-path.diff
File explicit-ln-path.diff, 1.3 KB (added by , 15 years ago) |
---|
-
docs/topics/install.txt
245 245 246 246 .. code-block:: bash 247 247 248 ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django248 ln -s WORKING-DIR/django-trunk/django SITE-PACKAGES-DIR/django 249 249 250 250 (In the above line, change ``SITE-PACKAGES-DIR`` to match the location of 251 251 your system's ``site-packages`` directory, as explained in the 252 "Where are my ``site-packages`` stored?" section above.) 252 "Where are my ``site-packages`` stored?" section above. Change WORKING-DIR 253 to match the full path to your new ``djanjo-trunk`` directory.) 253 254 254 255 Alternatively, you can define your ``PYTHONPATH`` environment variable 255 256 so that it includes the ``django-trunk`` directory. This is perhaps the … … 274 275 275 276 .. code-block:: bash 276 277 277 ln -s `pwd`/django-trunk/django/bin/django-admin.py /usr/local/bin278 ln -s WORKING-DIR/django-trunk/django/bin/django-admin.py /usr/local/bin 278 279 280 (In the above line, change WORKING-DIR to match the full path to your new 281 ``djanjo-trunk`` directory.) 282 279 283 This simply lets you type ``django-admin.py`` from within any directory, 280 284 rather than having to qualify the command with the full path to the file. 281 285