Installation#

🔧 Prerequisites#

Before installing ContextGem, ensure you have:

  • Python 3.10-3.13

  • pip (Python package installer)

📦 Installation Methods#

From PyPI#

The simplest way to install ContextGem is via pip:

pip install -U contextgem

Or using uv (faster alternative):

uv add contextgem

Development Installation#

For development, clone the repository and use uv:

git clone https://github.com/shcherbak-ai/contextgem.git
cd contextgem

# Install uv if you don't have it
pip install uv

# Install dependencies including development extras
uv sync --all-groups

✅ Verifying Installation#

To verify that ContextGem is installed correctly, run:

python -c "import contextgem; print(contextgem.__version__)"