Ticket #13279: explicit-ln-path.diff

File explicit-ln-path.diff, 1.3 KB (added by stumbles, 14 years ago)
  • docs/topics/install.txt

     
    245245
    246246   .. code-block:: bash
    247247
    248        ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django
     248       ln -s WORKING-DIR/django-trunk/django SITE-PACKAGES-DIR/django
    249249
    250250   (In the above line, change ``SITE-PACKAGES-DIR`` to match the location of
    251251   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.)
    253254
    254255   Alternatively, you can define your ``PYTHONPATH`` environment variable
    255256   so that it includes the ``django-trunk`` directory. This is perhaps the
     
    274275
    275276   .. code-block:: bash
    276277
    277        ln -s `pwd`/django-trunk/django/bin/django-admin.py /usr/local/bin
     278       ln -s WORKING-DIR/django-trunk/django/bin/django-admin.py /usr/local/bin
    278279
     280   (In the above line, change WORKING-DIR to match the full path to your new
     281   ``djanjo-trunk`` directory.)
     282
    279283   This simply lets you type ``django-admin.py`` from within any directory,
    280284   rather than having to qualify the command with the full path to the file.
    281285
Back to Top