5. Packaged binary install of pyaqsapi(preferred method)
5.1. Packaged binary install of pyaqsapi from pypi.org
pip install pyaqsapi
6. Install pyaqsapi from source (manual install from github)
To install pyaqsapi first clone the pyaqsapi repository.
git clone https://github.com/USEPA/pyaqsapi.git
Next, in the project’s root directory use pip to install the proper dependencies that are required to build and install pyaqsapi.
pip install -r requirements.txt
While still in the project’s root directory use setuptools to build and pip to install the package.
python -m build .
python -m pip install .