Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions 00-course-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,29 @@ Whichever option you choose, it will determine which setup steps you need to fol

- Python 3.12+
- **NOTE**: If you don't have Python3.12 installed, ensure you install it. Then create your venv using python3.12 to ensure the correct versions are installed from the requirements.txt file.

>Example

Create Python venv directory:

``` bash
python3 -m venv venv
```

Then activate venv environment for:

macOS and Linux

```bash
source venv/bin/activate
```

Windows

```bash
venv\Scripts\activate
```

- A GitHub Account - For Access to the GitHub Models Marketplace
- Azure Subscription - For Access to Azure AI Foundry
- Azure AI Foundry Account - For Access to the Azure AI Agent Service
Expand Down