Installation
Formulate can be installed using pip, conda, or by building from source.
Using pip
The recommended way to install Formulate is using pip:
pip install formulate
For development or to get the latest unreleased changes, you can install directly from GitHub:
pip install git+https://github.com/scikit-hep/formulate.git
Using conda
Formulate is also available on conda-forge (TODO: not yet:
conda install -c conda-forge formulate
From Source
To install Formulate from source:
Clone the repository:
git clone https://github.com/scikit-hep/formulate.git cd formulate
Install in development mode:
pip install -e .
Verifying Installation
To verify that Formulate is installed correctly, you can run:
import formulate
print(formulate.__version__)
1.0.1.dev32+g6b0b2d2