Changeset 211
- Timestamp:
- 09/24/08 11:06:44 (4 months ago)
- Files:
-
- branches/cleanup/INSTALL (modified) (1 diff)
- branches/cleanup/README (modified) (1 diff)
- trunk/examples/retina/retina.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cleanup/INSTALL
r148 r211 1 NeuroTools Insallation: 1 NeuroTools Insallation 2 ====================== 2 3 3 4 First download the package files: 4 svn co https://neuralensemble.kip.uni-heidelberg.de/svn/NeuroTools/trunk NeuroTools5 cd NeuroTools6 5 7 As root 6 svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools 7 cd NeuroTools 8 8 9 $ python setup.py install 9 Install as root (if you want a global install) 10 10 11 or for those without root access, to a local location, something like: 11 $ python setup.py install 12 12 13 # python setup.py install --prefix=$HOME/opt/mystuff 13 or for those without root access, install to a writable location, something like: 14 15 # python setup.py install --prefix=$HOME/opt/mystuff 14 16 15 17 Then you need to add the location: 16 18 17 $HOME/opt/mystuff/lib/python2. 4/site-packages/19 $HOME/opt/mystuff/lib/python2.5/site-packages/ 18 20 19 21 to your PYTHON_PAH or (in python) your sys.path 20 22 21 Note, here lib is replaced by lib64 on 64bit systems, and python2. 4is23 Note, here lib is replaced by lib64 on 64bit systems, and python2.5 is 22 24 (obviously) replaced by your python version. 23 25 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 26 Developpers 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 27 31 and voila! 28 32 branches/cleanup/README
r6 r211 1 NeuroTools SVN : see https://facets-vm3.kip.uni-heidelberg.de/trac/NeuroTools/wiki 1 For more info see the NeuroTools trac http://neuralensemble.org/trac/NeuroTools trunk/examples/retina/retina.py
r206 r211 86 86 import pyNN.nest2 as sim 87 87 from NeuroTools.signals import loadSpikeList 88 89 88 import os, tempfile 90 89 import numpy

