HNN install (Mac OS)

Opening a terminal window

Run pre-install checks

Prerequisite 1: Xcode Command Line Tools

The Xcode Command Line Tools package includes utilities for compiling code from the terminal. This is needed for compiling NEURON mod files during the hnn-core installation.

  1. To install the package, type the following from a terminal.app window:

     xcode-select --install
    
    • If you get the following error, you can skip this step. xcode-select: error: command line tools are already installed, use "Software Update" to install updates
  2. Then press Install in the pop-up dialog.

Prerequisite 2: Miniconda (Python 3)

Prepare the Python environment

  1. Create a conda environment with the Python prerequisites for HNN.

     conda env create -f environment.yml
     conda install -y -n hnn openmpi mpi4py
    
  2. Activate the HNN conda environment and python prerequisite packages

     conda activate hnn
     pip install https://api.github.com/repos/jonescompneurolab/hnn-core/zipball/master
     pip install nlopt
     pip install mpi4py
    

Run post-install checks

curl -s "https://raw.githubusercontent.com/jonescompneurolab/hnn/master/installer/mac/check-post.sh" | bash

Download HNN source code

git clone https://github.com/jonescompneurolab/hnn.git
cd hnn

Run the HNN model

  1. Start the HNN GUI from a terminal window. Make sure the hnn environment has been activated each time a terminal window is opened:

     conda activate hnn
     python hnn.py
    
  2. The HNN GUI should show up. Make sure that you can run simulations by clicking the ‘Run Simulation’ button. This will run a simulation with the default configuration. After it completes, graphs should be displayed in the main window.

  3. When you run simulations for the first time, two dialog boxes may pop-up and ask you for permission to allow connections through the firewall. Saying ‘Deny’ is fine since simulations will just run locally on your Mac.

  4. You can now proceed to running the tutorials at https://hnn.brown.edu/index.php/tutorials/ . Some things to note:

    • A directory called “hnn_out” exists in your home directory where the results from your simulations (data and param files) will be stored.

Upgrading to a new version of HNN

HNN Releases can be found on the GitHub releases page. You can also be notified of new releases by watching the hnn repository on GitHub.

To download the latest HNN release:

curl -OL https://github.com/jonescompneurolab/hnn/releases/latest/download/hnn.tar.gz
mkdir hnn_source_code
tar -x --strip-components 1 -f hnn.tar.gz -C hnn_source_code
cd hnn_source_code
conda activate hnn
python3 hnn.py

If you are using git, then run git pull origin master from the source code directory.

Troubleshooting

For Mac OS specific issues: please see the Mac OS troubleshooting page

If you run into other issues with the installation, please open an issue on our GitHub. Our team monitors these issues and will investigate possible fixes.

Another option for users that are running into problems with the above methods, we provide a VirtualBox VM pre-installed with HNN.