Changeset 215 for trunk/INSTALL

Show
Ignore:
Timestamp:
10/16/08 13:45:00 (3 months ago)
Author:
apdavison
Message:

Merged cleanup branch changes r198:214 into the trunk.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/INSTALL

    r148 r215  
    1 NeuroTools Insallation: 
     1NeuroTools Insallation 
     2====================== 
    23 
    34First download the package files: 
    4 svn co https://neuralensemble.kip.uni-heidelberg.de/svn/NeuroTools/trunk NeuroTools 
    5 cd NeuroTools 
    65 
    7 As root 
     6        svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools 
     7        cd NeuroTools 
    88 
    9 $ python setup.py install 
     9Install as root (if you want a global install) 
    1010 
    11 or for those without root access, to a local location, something like: 
     11        $ python setup.py install 
    1212 
    13 # python setup.py install --prefix=$HOME/opt/mystuff 
     13or for those without root access, install to a writable location, something like: 
     14 
     15        # python setup.py install --prefix=$HOME/opt/mystuff 
    1416 
    1517Then you need to add the location:  
    1618 
    17 $HOME/opt/mystuff/lib/python2.4/site-packages/  
     19$HOME/opt/mystuff/lib/python2.5/site-packages/  
    1820 
    1921to your PYTHON_PAH or (in python) your sys.path 
    2022 
    21 Note, here lib is replaced by lib64 on 64bit systems, and python2.4 is 
     23Note, here lib is replaced by lib64 on 64bit systems, and python2.5 is 
    2224(obviously) replaced by your python version. 
    2325 
    24 Developpers of NeuroTools may be intersted in having their lastly updated version from SVN used by python (and therefore on python's path). A solution is to symbolically link the src folder to a folder included in the path: 
    25 cd my_local_site-packages_folder 
    26 ln -s where_I_check-out_neuralensemble/NeuroTools/trunk/src NeuroTools 
     26Developpers of NeuroTools may be interested in having their lastly updated version from SVN used by python (and therefore on python's path). A solution is to symbolically link the src folder to a folder included in the path: 
     27 
     28        cd my_local_site-packages_folder 
     29        ln -s where_I_check-out_neuralensemble/NeuroTools/trunk/src NeuroTools 
     30 
    2731and voila! 
    2832