Skip to content

Commit ebc03a6

Browse files
authored
Update azureml-batch-prereqs.md
1 parent 3d05027 commit ebc03a6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

includes/machine-learning/azureml-batch-prereqs.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,19 @@ Before following the steps in this article, make sure you have the following pre
2828
az extension add -n ml
2929
```
3030
31+
> [!NOTE]
32+
> Pipeline component deployments for Batch Endpoints were introduced in version 2.7 of the `ml` extension for Azure CLI. Use `az extension update --name ml` to get the last version of it.
33+
3134
# [Python](#tab/python)
3235
3336
The [Azure Machine Learning SDK for Python](https://aka.ms/sdk-v2-install).
3437
3538
```python
3639
pip install azure-ai-ml
3740
```
41+
42+
> [!NOTE]
43+
> Classes `ModelBatchDeployment` and `PipelineComponentBatchDeployment` were introduced in version 1.7.0 of the SDK. Use `pip install -U azure-ai-ml` to get the last version of it.
3844
3945
### Connect to your workspace
4046
@@ -61,9 +67,6 @@ az configure --defaults workspace=<workspace> group=<resource-group> location=<l
6167
from azure.identity import DefaultAzureCredential
6268
```
6369

64-
> [!NOTE]
65-
> Classes `ModelBatchDeployment` and `PipelineComponentBatchDeployment` were introduced in version 1.7.0 of the SDK.
66-
6770
1. Configure the workspace details and get a handle to the workspace:
6871

6972
Pass in the values for your subscription ID, workspace, and resource group in the following code:
@@ -76,4 +79,4 @@ az configure --defaults workspace=<workspace> group=<resource-group> location=<l
7679
ml_client = MLClient(DefaultAzureCredential(), subscription_id, resource_group, workspace)
7780
```
7881

79-
---
82+
---

0 commit comments

Comments
 (0)