Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.66 KB

install.rst

File metadata and controls

45 lines (28 loc) · 1.66 KB

Installation

Supported platforms

  • Operating system: Windows, MacOS/Mac OS X, and Linux
  • Python: 2.7, 3.4, 3.5, and 3.6

Note

For users that are new to Python, we recommend installing the free Anaconda distribution of Python, which works on Mac, Linux, and Windows and both on normal computers and institutional clusters and doesn't require root permissions.

aospy is available from the official Python Packaging Index (PyPI) via pip:

pip install aospy

Note

We are currently working on adding aospy to conda-forge such that it will be installable via conda (i.e. conda install aospy -c conda-forge).

Alternative method: clone from Github

You can also clone the Github repo :

git clone https://www.github.com/spencerahill/aospy/aospy.git
cd aospy
python setup.py install

Verifying proper installation

Once installed via either method, you can run aospy's suite of tests using py.test. From the top-level directory of the aospy installation :

pip install pytest  # if you don't have it already
py.test aospy

If this results in any error messages or test failures, something has gone wrong.

Troubleshooting

Please open an Issue on Github if you have problems with any of these installation methods.