Installation#

The apstools package is available for installation by conda, pip, or from source.

conda#

If you are using Anaconda Python and have conda installed, install the most recent version with this command:

$ conda install conda-forge::apstools

pip#

Released versions of apstools are available on PyPI.

If you have pip installed, then you can install:

$ pip install apstools

development#

The latest development versions of apstools can be downloaded from the GitHub repository listed above. Install from the source directory using pip in editable mode:

1ENV_NAME=apstools
2git clone http://github.com/BCDA-APS/apstools
3cd apstools
4conda create -n "${ENV_NAME}" python pyepics apsu::aps-dm-api
5conda activate "${ENV_NAME}"
6pip install -e .[all]