forked from bernhardkaplan/bcpnn-mt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
executable file
·42 lines (36 loc) · 1.32 KB
/
bootstrap.sh
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
# installing requirements on an empty machine
## fetching neurodebian package list
wget -O- http://neuro.debian.net/lists/quantal.de-md | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
sudo apt-key adv --recv-keys --keyserver pgp.mit.edu 2649A5A9
sudo aptitude update
sudo aptitude upgrade
#
sudo aptitude install python-pynn
sudo aptitude install python-matplotlib
sudo aptitude install python-pip
sudo pip install NeuroTools
sudo aptitude install python-scipy
sudo aptitude install ffmpeg
#PyNN+NeuroTools
sudo aptitude install python-pynn
sudo aptitude install python-pip
sudo aptitude install python-imaging
sudo pip install NeuroTools
#NEST dependencies
# sudo aptitude install gsl-bin libgsl0-dev
# sudo aptitude install python-dev
# sudo aptitude install libncurses-dev
# sudo aptitude install libreadline-dev
# sudo apt-get install build-essential autoconf automake libtool libltdl7-dev \
# libreadline5-dev libncurses5-dev libgsl0-dev python-all-dev python-numpy python-scipy \
# python-matplotlib ipython
#NEST
wget http://www.nest-initiative.org/download/gplreleases/nest-2.2.1.tar.gz
tar zxvf nest-2.2.1.tar.gz
cd nest-2.2.1
./configure --prefix=$HOME/opt/nest --without-readline
make
sudo make install
cd ..
# BRIAN
# sudo aptitude install python-brian python-brian-lib