Installation
Create environment
If desired, install clusteval
from an isolated Python environment using conda:
conda create -n env_clusteval python=3.8
conda activate env_clusteval
Pypi (recommended)
# Install from Pypi:
pip install clusteval
# Force update to latest version
pip install -U clusteval
Github source
# Install directly from github
pip install git+https://github.com/erdogant/clusteval
Uninstalling
Remove environment
# List all the active environments. clusteval should be listed.
conda env list
# Remove the clusteval environment
conda env remove --name clusteval
# List all the active environments. clusteval should be absent.
conda env list
Remove installation
Note that the removal of the environment will also remove the clusteval
installation.
# Install from Pypi:
pip uninstall clusteval