Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 730 Bytes

File metadata and controls

36 lines (27 loc) · 730 Bytes

Installation and Setup

Mac:

brew install uv

Windows:

powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
set Path=C:\Users\[username]\.local\bin;%Path%

For other platforms, see the uv installation guide.

Setting Up the Project:

  1. Fork or clone the repo:

    https://github.com/JotaDeRodriguez/simple_revit_mcp
    
  2. Create and activate a virtual environment:

    # Create virtual environment
    uv venv
    
    # Activate it (Linux/Mac)
    source .venv/bin/activate
    
    # Activate it (Windows)
    .venv\Scripts\activate
    
    # Install requirements
    uv pip install -r requirements.txt