Installation¶
pyclustree only supports Python versions greater than or equal to 3.10.
Installation Options¶
Choose an option to install this package.
Install pyclustree package using pip:
pip install pyclustree
For scoring of clusters functions from the scikit-learn package are used. To install pyclustree with this optional
dependency use the following pip command:
pip install "pyclustree[sklearn]"
Install pyclustree from source:
# Clone repo
git clone --depth 1 https://github.com/complextissue/pyclustree.git
cd pyclustree
pyenv global 3.10
make create-venv
source .venv/bin/activate
make install