Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 830 Bytes

File metadata and controls

46 lines (32 loc) · 830 Bytes

Installation — sin-code-sckg

Requirements

  • Python 3.11+
  • pip (or uv/pipx)
  • Git (for repository-aware features)

Install from source (recommended during preview)

git clone https://github.com/OpenSIN-Code/SIN-Code-Semantic-Codebase-Knowledge-Graphs.git
cd SIN-Code-Semantic-Codebase-Knowledge-Graphs
pip install -e .

This installs the sckg CLI and the importable package sin_code_sckg.

Install into an isolated environment

python -m venv .venv
source .venv/bin/activate      # Windows: .venv\Scripts\activate
pip install -e .

Optional: MCP server support

The MCP server requires the optional mcp dependency:

pip install -e ".[mcp]"

Verify the installation

sckg --help
pytest -q

Uninstall

pip uninstall sin-code-sckg