Show
Ignore:
Timestamp:
03/22/07 15:41:44 (2 years ago)
Author:
wrobell
Message:

- added info about fetching and installing deps

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphor/trunk/HACKING

    r445 r1172  
    11Feel free to hack Gaphor. Patches are welcome. 
     2 
     3Fetching Development Dependencies 
     4================================= 
     5 
     6Gaphor uses Easy Install to manage in easy way its dependencies. 
     7 
     8To fetch and install dependencies as non-root user 
     9  
     101. Create ~/.pydistutils.cfg file 
     11 
     12    [install] 
     13    install_lib = ~/opt/share/python2.5/site-packages 
     14    install_scripts = ~/opt/bin 
     15 
     162. Create (or extend) PYTHONPATH variable 
     17 
     18    export PYTHONPATH=~/opt/share/python2.5/site-packages 
     19 
     203. Run setup.py script to fetch and install dependencies 
     21 
     22    python setup.py develop 
     23 
     24Prefix ~/opt can be changed to something more suitable for your setup. 
     25 
     26 
     27Above is based on 
     28 
     29    http://peak.telecommunity.com/DevCenter/EasyInstall#traditional-pythonpath-based-installation 
     30 
    231 
    332Structure