Skip to content

Configure dev environment

Python Environment

Create and Activate

python -m venv .venv
.venv\Scripts\activate
source .venv/bin/activate

Install Dependencies

pip install uv && uv pip install -r scripts/requirements.txt
pip install -r scripts/requirements.txt

Verify Setup

python -c "import azure.ai.projects; print('Ready')"

Configure Fabric

Using Azure-Only Mode?

If you set AZURE_ENV_ONLY=true before deployment, skip this section. Fabric configuration is not required when using Azure SQL.

Get Your Workspace ID

  1. Go to Microsoft Fabric
  2. Open your workspace
  3. Note the workspace ID from the URL — you'll pass it as a parameter in the next step:
https://app.fabric.microsoft.com/groups/{workspace-id}/...

Checkpoint

Before proceeding:

  • azd up completed successfully
  • Python environment activated
  • Dependencies installed
  • Fabric workspace ID noted (skip if using Azure-only mode)

Ready to Run

Continue to the next step to see it in action.


← Fabric Setup | Build solution →