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:
3333
3434## Prerequisites
3535
36+ * An Azure subscription. If you don't have one, create a [ free account] ( https://azure.microsoft.com/free/ ) .
3637* [ Create an AI Project] ( ../create-projects.md ) if you don't have one already.
3738* Sign in with the Azure CLI using the same account that you use to access your AI Project:
3839
3940 ``` bash
4041 az login
4142 ```
4243
43- # # Install all packages
44+ # # All packages
4445
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.
4647
4748::: zone pivot=" programming-language-python"
4849
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+ ```
5265
5366---
5467
@@ -80,7 +93,6 @@ using Azure.Search.Documents.Models;
8093
8194::: zone-end
8295
83- Or, use the following sections to install only the packages you need.
8496
8597# # Get started with Projects
8698
You can’t perform that action at this time.
0 commit comments