nest

Neural simulation environment for modeling biological neural networks

brewmacoslinux
Try with needOr install directly
Source

About

Neural Simulation Tool (NEST) with Python3 bindings (PyNEST)

Commands

nestnest-configpynest

Examples

Run a NEST simulation script written in Python$ python3 -c "import nest; nest.Simulate(1000)"
Check NEST installation and configuration details$ nest-config --help
Create and simulate a simple neural network with PyNEST$ python3 -c "import nest; neurons = nest.Create('iaf_psc_alpha', 10); nest.Connect(neurons, neurons); nest.Simulate(100)"