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:

  1. Clone the repository to your local machine:

    git clone https://github.com/mxwalbert/cohesivm.git
    
  2. Navigate into the cloned directory:

    cd cohesivm
    
  3. Install the package and its dependencies:

    pip install .[dev]