Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,5 +526,5 @@ See the list of contributors on respective GitHub projects:
# Feedback / Help

- Software related issues should be reported on GitHub : [https://github.com/neuronsimulator/nrn/issues/new/choose](https://github.com/neuronsimulator/nrn/issues/new/choose)
- For developing models and any scientific questions, see NEURON forum : [https://www.neuron.yale.edu/phpBB/](https://www.neuron.yale.edu/phpBB/)
- For developing models and any scientific questions, see the NEURON Discussion Board: [https://github.com/neuronsimulator/nrn/discussions](https://github.com/neuronsimulator/nrn/discussions)
- If you want to participate / contribute to the development of NEURON, you can join monthly developers meeting : [https://github.com/neuronsimulator/nrn/wiki](https://github.com/neuronsimulator/nrn/wiki)
2 changes: 1 addition & 1 deletion docs/guide/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To exit NEURON : type ``quit()`` or ``^D`` ("control D") at the ``oc>`` or ``>>>

What's the best way to learn how to use NEURON?
-----------------------------------------------
First be sure to join `The NEURON Forum <https://www.neuron.yale.edu/phpBB/index.php>`_.
Ask any questions at the `NEURON Discussion Board <https://github.com/neuronsimulator/nrn/discussions>`_.
If you have time, watch our course :ref:`videos <training_videos>`; the material in each course varies, but they generally include a mix of theory and applications.
Then :ref:`read these suggestions <how_to_get_started>`.

Expand Down
6 changes: 3 additions & 3 deletions docs/guide/how_to_get_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Installation

If you haven't already, install NEURON. Detailed instructions for special cases are available `here <../install/install_instructions.html>`_, but in brief, you'll probably want to install Python (there are many options; `Anaconda <https://www.anaconda.com/>`_ is one such option). On Linux and macOS, you can then install NEURON by typing ``pip install neuron``. On Windows, use the latest NEURON installer from `our GitHub site <https://github.com/neuronsimulator/nrn/releases>`_. For parallel simulation, you will also want to install a version of MPI.

Forum
-----
Discussion Board
----------------

You'll likely have questions. Join `The NEURON Forum <https://www.neuron.yale.edu/phpBB/index.php>`_ to ask and answer questions.
You'll likely have questions. Ask and answer questions at the `NEURON Discussion Board <https://github.com/neuronsimulator/nrn/discussions>`_

Basic NEURON Usage
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/how_to_get_started_with_neuron.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ How to get started with NEURON
To learn the basics about using NEURON:
-------------

Don't forget to join `The NEURON Forum <https://www.neuron.yale.edu/phpBB/index.php>`_.
You'll likely have questions. Ask and answer questions at the `NEURON Discussion Board <https://github.com/neuronsimulator/nrn/discussions>`_

Then

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/what_is_neuron.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Complex models often require custom initialization and/or simulation flow contro
Large user base
---------------

As of February 2021, we know of `more than 2400 scientific articles and books have reported work that was done with NEURON <https://neuron.yale.edu/neuron/publications/neuron-bibliography>`_. The NEURON mailing list has about 500 subscribers, and `The NEURON Forum <https://www.neuron.yale.edu/phpBB/>`_, which was started in May 2005 and is gradually supplanting the old mailing list, has more than 1600 registered users and over 17,000 posted messages in greater than 4000 discussion threads.
As of March 2026, we know of more than 3,000 scientific articles and books have reported work that was done with NEURON <https://nrn.readthedocs.io/en/9.0.1/publications-using-neuron.html>`_.

Development, support, and documentation
---------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The NEURON Simulator
NEURON is a simulator for neurons and networks of neurons that runs efficiently on your local machine, in the cloud, or on an HPC.
Build and simulate models using Python, HOC, and/or NEURON's graphical interface. From this page you can watch :ref:`recorded NEURON classes <training_videos>`,
read the :ref:`Programmer's reference <prog_ref>`,
`browse the NEURON forum <https://www.neuron.yale.edu/phpBB/>`_,
`browse the NEURON Discussion Board <https://github.com/neuronsimulator/nrn/discussions>`_,
explore the `source code for over 850 NEURON models on ModelDB <https://modeldb.science/modellist/1882?all_simu=true>`_,
and more (use the links on the side or search).

Expand All @@ -28,7 +28,7 @@ and more (use the links on the side or search).
videos/index
guide/index
courses/exercises2018
The NEURON forum <https://neuron.yale.edu/phpBB>
NEURON Discussion Board <https://github.com/neuronsimulator/nrn/discussions>
publications
publications-using-neuron

Expand Down
2 changes: 1 addition & 1 deletion share/lib/hoc/stdrun.hoc
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ proc helpmenu() {
if (nrnpython("import webbrowser")) {
xbutton("Programmer's Reference", "nrnpython(\"webbrowser.open('https://nrn.readthedocs.io/en/latest/progref/index.html')\")")
xbutton("Tutorials", "nrnpython(\"webbrowser.open('https://nrn.readthedocs.io/en/latest/tutorials/index.html')\")")
xbutton("NEURON Forum", "nrnpython(\"webbrowser.open('https://neuron.yale.edu/phpBB/')\")")
xbutton("NEURON Discussion Board", "nrnpython(\"webbrowser.open('https://github.com/neuronsimulator/nrn/discussions')\")")
xbutton("NEURON Models on ModelDB", "nrnpython(\"webbrowser.open('https://modeldb.science/ModelList?id=1882')\")")
}
sprint(tstr, "continue_dialog(\"This is %s on %s.\")", nrnversion(1), nrnversion(8))
Expand Down
Loading