You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+164-3Lines changed: 164 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,8 @@ for communication with other software components.
17
17
18
18
## Quick Installation Guide
19
19
20
-
SPORE requires NEST installed with MUSIC (`-Dwith-music=ON`) and Python bindings. Please make sure your version of NEST corresponds to or is newer than revision
A detailed installation guide that also shows how to set up the dependencies is provided on the [SPORE wiki page](https://github.com/IGITUGraz/spore-nest-module/wiki).
20
+
SPORE requires NEST installed with MUSIC (`-Dwith-music=ON`) and Python bindings. Please make sure your version of NEST corresponds to or is newer than version 2.14.
21
+
A detailed installation guide that also shows how to set up the dependencies is provided below and on the [SPORE wiki page](https://github.com/IGITUGraz/spore-nest-module/wiki).
This guide describes how to install the SPORE module in version 2.14 for the NEST simulator in version 2.14. Combinining this version of SPORE with other versions of NEST may work but has not been tested.
36
+
We used MUSIC version 1.1.15 in revision [8e0a609b298](https://github.com/INCF/MUSIC/commit/8e0a609b29835be604ae556c1592aad9b4be1827) and [MPI](https://www.open-mpi.org/) (Open MPI 1.6.5).
37
+
Furthermore we need python with the packages `pyzmq`, `numpy`, `ujson` and `matplotlib`.
38
+
A guide to install these dependencies is provided below.
39
+
Finally we used SPORE ([version 2.14](https://github.com/IGITUGraz/spore-nest-module/releases/tag/v2.14.0), or later).
40
+
The installation procedure was tested on Debian GNU/Linux 8.7 (jessie).
41
+
42
+
This guide assumes that you want to install everything into your local home folder `$HOME/opt/`.
43
+
It is further assumed that you checkout the software into a local folder that is used for development,
44
+
which we refer to as `devel` folder.
45
+
46
+
### Preparation
47
+
48
+
Add the following lines to your `~/.bashrc` (or `~/.zshrc` or `~/.profile` etc.)
[INFO] [.../rng_manager.cpp:284 @ Network::create_grng_] : Creating new default global RNG
165
+
166
+
-- N E S T --
167
+
168
+
Copyright (C) 2004 The NEST Initiative
169
+
Version 2.14.0 Oct 30 2017 13:06:41
170
+
171
+
This program is provided AS IS and comes with
172
+
NO WARRANTY. See the file LICENSE for details.
173
+
174
+
Problems or suggestions?
175
+
Visit http://www.nest-simulator.org
176
+
177
+
Type 'nest.help()' to find out more about NEST.
178
+
179
+
In [2]: nest.Install("sporemodule")
180
+
181
+
Oct 31 13:26:30 Install [Info]:
182
+
loaded module SPORE (version 2.14.0)
183
+
```
184
+
185
+
## Running a first experiment
186
+
187
+
That should be it.
188
+
189
+
Now you should be able to execute the script [`experiment.py`](https://github.com/IGITUGraz/spore-nest-module/blob/master/examples/pattern_matching_showcase/experiment.py) in
0 commit comments