From Fedora Project Wiki
Description
This test case ensures that the Python bindings of NEURON simulator function correctly on install.
Setup
- Run a current Fedora release: even a virtual machine is OK.
- Install nest:
sudo dnf install python3-neuron python3-ipython
. - If testing an update, please ensure that the build in the update is being installed:
sudo dnf --enablerepo=updates-testing install python3-neuron python3-ipython
.
How to test
- In a terminal, run the ipython3 interpreter:
ipython3
- Try to import neuron:
import neuron
- Go through the steps listed in the NEURON documentation: https://neuron.yale.edu/neuron/docs/scripting-neuron-basics
Expected Results
- NEURON should be import correctly in Python.
- You should be able to run the example simulation and see the graph provided in the documentation.