Installation¶
LIFEsimMC requires Python >=3.10 to run.
Installation From PyPI (Recommended)¶
To install LIFEsimMC from PyPI, run the following command in your terminal:
pip install lifesimmc
Installation From GitHub¶
To install LIFEsimMC from GitHub, run the following command in your terminal:
pip install git+https://github.com/pahuber/LIFEsimMC
Alternatively, the repository can be cloned and installed from GitHub using:
git clone https://github.com/pahuber/LIFEsimMC.git
cd LIFEsimMC
pip install .
Test Installation¶
You can check the installation by running the following code in a Python environment:
import lifesimmc
print(lifesimmc.__version__)