Installing AgavePy

The preferred, most compatible way to install AgavePy is to use PyPi. Current and all past releases are available unless deprecated to resolve security issues or functional defects.

pip install agavepy

For a specific version:

pip install agavepy==1.0.0

From source

You can also install the latest AgavePy releases from source.

Obtain the source code from GitHub

git clone https://github.com/TACC/agavepy

This will check out the master branch. To checkout an alternative branch (for example develop), do the following:

cd agavepy
git checkout develop

Install with setuptools

Within the agavepy source directory:

python setup.py install

Install with GNU make

If GNU make is installed in your system, you can install AgavePy for Python 3 as follows:

make install

You can install for Python 2 like so:

make install-py2