forked from laurentperrinet/NeuroTools
-
Notifications
You must be signed in to change notification settings - Fork 8
/
INSTALL
41 lines (24 loc) · 1.02 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
NeuroTools Installation
=======================
The simplest method is to use:
$ pip install NeuroTools
Compiling from source
---------------------
First download the package files::
$ git clone https://github.com/meduz/NeuroTools.git
$ cd NeuroTools
Install as root (if you want a global install)::
# python setup.py install
or for those without root access, install to a writable location, something like::
$ python setup.py install --prefix=$HOME/opt/mystuff
Then you need to add the location::
$HOME/opt/mystuff/lib/python2.7/site-packages/
to your PYTHONPATH or within python in your sys.path directive.
Note, here lib is replaced by `lib64` on 64 bit systems, and `python2.7` is
(obviously) replaced by your python version.
Developers of NeuroTools may be interested in using the last-updated version
from git.
A solution is to symbolically link the src folder to a folder included in the path::
cd my_local_site-packages_folder
ln -s where_I_check-out_neuralensemble/NeuroTools/trunk/src NeuroTools
and voila!