Installation

Create environment

If desired, install anonym from an isolated Python environment using conda:

conda create -n env_anonym python=3.10
conda activate env_anonym

Pypi

# Install from Pypi:
pip install anonym

# Force update to latest version
pip install -U anonym

Github source

# Install directly from github
pip install git+https://github.com/erdogant/anonym

Uninstalling

Remove environment

# List all the active environments. anonym should be listed.
conda env list

# Remove the anonym environment
conda env remove --name anonym

# List all the active environments. anonym should be absent.
conda env list

Remove installation

Note that the removal of the environment will also remove the anonym installation.

# Install from Pypi:
pip uninstall anonym