Skip to content

Installation

PyPI - Version PyPI - Python Version downloads
PyPI - License

AMSDAL is published as a Python package and can be installed using pip

Info

AMSDAL is available on Linux, Windows, Mac (Intel, M1 & M2 chipsets).

pip install amsdal

To maximize extendability and modularity, AMSDAL is broken into several packages:

Optional dependencies

  • To use Redis as a backend for locking, install:
pip install amsdal[redis-lock]
  • To use AMSDAL Fast API Server, install:
pip install amsdal[server]
  • To use AMSDAL CLI, install:
pip install amsdal[cli]

Optional dependencies can be combined:

pip install amsdal[cli,redis-lock]

Note

The AMSDAL CLI includes AMSDAL Server so there is no need to specify amsdal[cli,server]