Installation

Create environment

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

conda create -n env_LLMlight python=3.12
conda activate env_LLMlight

Pypi

# Install from Pypi:
pip install LLMlight

# Force update to latest version
pip install -U LLMlight

Github source

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

Uninstalling

Remove environment

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

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

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

Remove installation

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

# Install from Pypi:
pip uninstall LLMlight