File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed
articles/ai-foundry/how-to/develop Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -33,22 +33,35 @@ If you want to jump right in and start building an app, check out:
33
33
34
34
## Prerequisites
35
35
36
+ * An Azure subscription. If you don't have one, create a [ free account] ( https://azure.microsoft.com/free/ ) .
36
37
* [ Create an AI Project] ( ../create-projects.md ) if you don't have one already.
37
38
* Sign in with the Azure CLI using the same account that you use to access your AI Project:
38
39
39
40
``` bash
40
41
az login
41
42
```
42
43
43
- # # Install all packages
44
+ # # All packages
44
45
45
- Install all the packages you need to get started with the Azure AI Foundry SDK.
46
+ Install all the Azure AI Foundry SDK packages as shown here, or install only the packages you need in the following sections.
46
47
47
48
::: zone pivot=" programming-language-python"
48
49
49
- ` ` ` bash
50
- pip install azure-ai-projects azure-identity openai azure-ai-inference azure-search-documents azure-ai-evaluation azure-monitor-opentelemetry
51
- ` ` `
50
+ 1. Create a file named ** requirements.txt** . Add the following packages to the file:
51
+
52
+ ` ` ` txt
53
+ azure-ai-projects
54
+ azure-identity openai
55
+ azure-ai-inference
56
+ azure-search-documents
57
+ azure-ai-evaluation
58
+ azure-monitor-opentelemetry
59
+
60
+ 1. Install the packages:
61
+
62
+ ` ` ` bash
63
+ pip install -r requirements.txt
64
+ ```
52
65
53
66
---
54
67
@@ -80,7 +93,6 @@ using Azure.Search.Documents.Models;
80
93
81
94
::: zone-end
82
95
83
- Or, use the following sections to install only the packages you need.
84
96
85
97
# # Get started with Projects
86
98
You can’t perform that action at this time.
0 commit comments