Skip to content

Commit 13fc1b8

Browse files
authored
Merge pull request #338 from devopsninja2021/enhancement/add-venv-creation-documentation
📚 Update README with Python virtual environment setup instructions
2 parents 6486309 + 8661a8c commit 13fc1b8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

00-course-setup/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,29 @@ Whichever option you choose, it will determine which setup steps you need to fol
4040

4141
- Python 3.12+
4242
- **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.
43+
44+
>Example
45+
46+
Create Python venv directory:
47+
48+
``` bash
49+
python3 -m venv venv
50+
```
51+
52+
Then activate venv environment for:
53+
54+
macOS and Linux
55+
56+
```bash
57+
source venv/bin/activate
58+
```
59+
60+
Windows
61+
62+
```bash
63+
venv\Scripts\activate
64+
```
65+
4366
- A GitHub Account - For Access to the GitHub Models Marketplace
4467
- Azure Subscription - For Access to Azure AI Foundry
4568
- Azure AI Foundry Account - For Access to the Azure AI Agent Service

0 commit comments

Comments
 (0)