Installation Guide
Follow these steps to install the ccCPM Python package directly from GitHub.
Prerequisites
- tested with Python 3.10 or later
pip
(Python's package manager)
Installation Steps
Clone the GitHub repository:
Bash
git clone https://github.com/mmll/cpm_python.git
Navigate to the repository directory:
Bash
cd cpm_python
Install the package:
Bash
pip install .
To install in development mode, use:
Bash
pip install -e .
Verify the installation:
Python
import cpm
print(cpm.__version__)
You should see the package version printed without errors.