← Back to Tutorials

2. Community & Setup

Join the Community

Azure Subscription Setup

  1. Create an Azure subscription (free tier works)
  2. Navigate to Azure AI Foundry in the portal
  3. Create a Hub resource (shared AI Search, Storage, Key Vault)
  4. Create a Project within the Hub

SDK Installation

# Python
pip install azure-ai-projects azure-ai-inference azure-search-documents

# Node.js
npm install @azure/ai-projects @azure/ai-inference @azure/search-documents

# .NET
dotnet add package Azure.AI.Projects
dotnet add package Azure.AI.Inference

VSCode Extension

Install the Azure AI Foundry extension from the marketplace to browse models, deploy agents, and test RAG pipelines directly from your editor.

📘 Note: The Hub provides shared infrastructure (AI Search, Storage, Key Vault) across all projects. Create one Hub per team.
✏️ Exercise: Create a new Azure AI Foundry Hub and Project in your subscription. Install the Python SDK. Verify the setup by running pip list | findstr azure-ai.