Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 775 Bytes

File metadata and controls

46 lines (32 loc) · 775 Bytes

Installation — sin-code-bundle

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.git
cd SIN-Code-Bundle
pip install -e .

This installs the sin command and the importable package sin_code_bundle.

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

sin --help
pytest -q

Uninstall

pip uninstall sin-code-bundle