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