Installation instructions

pip

Note that using pip outside virtualenv is not recommended since it ignores your systems package manager. If you aren’t comfortable debugging package installation issues use virtualenv.

Create and activate a virtualenv:

virtualenv acstore_venv
cd acstore_venv
source ./bin/activate

Upgrade pip and install ACStore dependencies:

pip install --upgrade pip
pip install acstore

To deactivate the virtualenv run:

deactivate