Getting Started#
Installation#
Install Python#
To use boa, you must first have Python and the conda package manager
installed. There are two options for this:
Install Anaconda: This is the recommended option for those who are new to Python. Anaconda comes with a few choices of IDEs and Jupyter Notebook, which can be used to run interactive Python notebooks such as those in boa’s examples. To install Anaconda, see directions for installing Anaconda.
Install Miniconda: If you want a more minimal installation without any extra packages, would prefer to handle installing a Python IDE yourself, and would prefer to work from the command line instead of using the graphical interface provided by Anaconda Navigator, you might prefer to install Miniconda rather than Anaconda. Miniconda is a minimal version of Anaconda that includes just conda, its dependencies, and Python. To install Miniconda, see directions for installing Miniconda.
Install boa#
Clone the boa repository from boa’s GitHub page.
From the root directory of the cloned repository, run:
conda env create --file environment.yaml
This will install boa in editable mode.
Todo
instructions for installing with pip
instructions for updating
Test run#
Once everything is installed, try to run the test example.
Todo
Add simple test run
If this test case runs successfully, you can move on to the next steps. If you have errors, see the Troubleshooting section.