Installation

There are different options available to install the framework: PyPi (stable) and GitHub (development).

Moreover, azcausal has a modular dependency management. By default core is used to install dependencies covering the most important functionalities. However, some estimators or functions might require additional libraries. To not worry about any dependency, feel free to use the full keyword which includes any type of library being used.

PyPi

For the latest stable release please use the official Python package manager:

.. code:: bash pip install -U azcausal

To install the all dependencies for all estimators and aws support please use:

.. code:: bash pip install -U azcausal[full]

Github

Development

To install the current development version from the main branch:

.. code:: bash pip install git+https://github.com/amazon-science/azcausal.git

Also, when installing from GitHub the dependencies can be specified:

.. code:: bash pip install -e "git+https://github.com/amazon-science/azcausal.git#egg=azcausal[core]"

Version

To install a specific version, the Github tag function can be used. For instance, to install v0.1 you can use the following command:

.. code:: bash pip install git+https://github.com/amazon-science/azcausal.git@v0.1