Installation
Using pip
To install the core COHESIVM package from the Python Package Index (PyPI), simply run:
pip install cohesivm
This command will download and install the latest stable version of COHESIVM and its core dependencies.
Important
If you want to use the GUIs inside your Jupyter environment, make sure to specify the
gui extra:
pip install cohesivm[gui]
Cloning from GitHub
If you want to install the development version of the package from the GitHub repository, follow these steps:
Clone the repository to your local machine:
git clone https://github.com/mxwalbert/cohesivm.gitNavigate into the cloned directory:
cd cohesivmInstall the package and its dependencies:
pip install .[dev]