Installation¶
MPIRE builds are distributed through PyPi.
MPIRE can be installed through pip:
pip install mpire
Note
MPIRE is only available for Python 3.x.
Dependencies¶
Python 3.x
Python packages (installed automatically when installing MPIRE):
numpy
DILL¶
Optionally, you can choose to use dill instead of regular pickle which allows you to serialize some more exotic types, like lambdas. Install the appropriate dependencies to enable this:
pip install mpire[dill]
Dashboard¶
Optionally, you can install the dependencies for the MPIRE dashboard, which depends on Flask. The dashboard allows you to see progress information from a browser. This is convenient when running scripts in a notebook or screen, or want to share the progress information with others. Install the appropriate dependencies to enable this:
pip install mpire[dashboard]