Installation ################ Create environment ********************** If desired, install ``clusteval`` from an isolated Python environment using conda: .. code-block:: python conda create -n env_clusteval python=3.8 conda activate env_clusteval Pypi (recommended) ********************** .. code-block:: console # Install from Pypi: pip install clusteval # Force update to latest version pip install -U clusteval Github source ************************************ .. code-block:: console # Install directly from github pip install git+https://github.com/erdogant/clusteval Uninstalling ################ Remove environment ********************** .. code-block:: console # 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. .. code-block:: console # Install from Pypi: pip uninstall clusteval .. include:: add_bottom.add