Changeset 330 for trunk/INSTALL
- Timestamp:
- 11/13/08 11:27:36 (3 years ago)
- Files:
-
- 1 modified
-
trunk/INSTALL (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r297 r330 2 2 ======================= 3 3 4 First download the package files: 4 First download the package files:: 5 5 6 svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools7 cd NeuroTools6 $ svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools 7 $ cd NeuroTools 8 8 9 Install as root (if you want a global install) 9 Install as root (if you want a global install):: 10 10 11 $python setup.py install11 # python setup.py install 12 12 13 or for those without root access, install to a writable location, something like: 13 or for those without root access, install to a writable location, something like:: 14 14 15 #python setup.py install --prefix=$HOME/opt/mystuff15 $ python setup.py install --prefix=$HOME/opt/mystuff 16 16 17 Then you need to add the location: 17 Then you need to add the location:: 18 18 19 $HOME/opt/mystuff/lib/python2.5/site-packages/19 $HOME/opt/mystuff/lib/python2.5/site-packages/ 20 20 21 21 to your PYTHONPATH or within python in your sys.path directive. … … 24 24 (obviously) replaced by your python version. 25 25 26 Developers 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: 26 Developers of NeuroTools may be interested in using the last-updated version from svn. 27 A solution is to symbolically link the src folder to a folder included in the path:: 27 28 28 29 cd my_local_site-packages_folder
