Installation

ares depends on:

and optionally:

If you have mercurial installed, you can clone ares and its entire revision history via:

hg clone https://bitbucket.org/mirochaj/ares ares
cd ares
python setup.py install

If you do not have mercurial installed, and would rather just grab a tarball of the most recent version, select the Download repository option on bitbucket.

You’ll need to set an environment variable which points to the ares install directory, e.g. (in bash)

export ARES=/users/<yourusername>/ares

ares will look in $ARES/input for lookup tables of various kinds. To download said lookup tables, run

python remote.py

This might take a few minutes. If something goes wrong with the download, you can run

python remote.py fresh

to get fresh copies of everything.

ares branches

ares has two main branches. The first, default, is meant to be stable, and will only be updated with critical bug fixes or upon arrival at major development milestones. The “bleeding edge” lives in the ares-dev branch, and while you are more likely to find bugs in ares-dev, you will also find the newest features.

By default after you clone ares you’ll be using the default branch. To switch, simply type:

hg update ares-dev

To switch back,

hg update default

For a nice discussion of the pros and cons of different branching techniques in mercurial, this article is a nice place to start.

ares versions

The first stable release of ares was used in Mirocha et al. (2015), and is tagged as v0.1 in the revision history.

If you’re unsure which version is best for you, see Development History.

Don’t have Python already?

If you do not already have Python installed, you might consider downloading yt, which has a convenient installation script that will download and install Python and many commonly-used Python packages for you.

Help

If you encounter problems with installation or running simple scripts, first check the Troubleshooting page in the documentation to see if you’re dealing with a common problem. If you don’t find your problem listed there, please let me know!