Skip to content

Commit 0112c0e

Browse files
committed
Update with requested changes.
1 parent 55e5ec4 commit 0112c0e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

articles/machine-learning/how-to-connection.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,24 @@ In this article, learn how to connect to data sources located outside of Azure,
4040
> [!NOTE]
4141
> For a successful data import, please verify that you have installed the latest azure-ai-ml package (version 1.5.0 or later) for SDK, and the ml extension (version 2.15.1 or later).
4242
>
43-
> If you have an older SDK package or CLI extension, please remove the old one and install the new one with the code shown in the tab section. Choose the code version that covers your situation:
43+
> If you have an older SDK package or CLI extension, please remove the old one and install the new one with the code shown in the tab section. Follow the instructions for SDK and CLI below:
4444
4545
### Code versions
4646

47-
# [Version 1.5.0](#tab/version-1-5-0)
47+
# [SDK](#tab/SDK)
4848

4949
```python
5050
pip uninstall azure-ai-ml
5151
pip install azure-ai-ml
52-
pip show azure-ai-ml
52+
pip show azure-ai-ml #(the version value needs to be 1.5.0 or later)
5353
```
5454

55-
# [Version 2.15.1](#tab/version-2-15-1-or-later)
55+
# [CLI](#tab/CLI)
5656

5757
```cli
5858
az extension remove -n ml
5959
az extension add -n ml --yes
60-
az extension show -n ml
60+
az extension show -n ml #(the version value needs to be 2.15.1 or later)
6161
```
6262

6363
---

articles/machine-learning/how-to-import-data-assets.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,24 @@ To create and work with data assets, you need:
4646
> [!NOTE]
4747
> For a successful data import, please verify that you have installed the latest azure-ai-ml package (version 1.5.0 or later) for SDK, and the ml extension (version 2.15.1 or later).
4848
>
49-
> If you have an older SDK package or CLI extension, please remove the old one and install the new one with the code shown in the tab section. Choose the code version that covers your situation:
49+
> If you have an older SDK package or CLI extension, please remove the old one and install the new one with the code shown in the tab section. Follow the instructions for SDK and CLI below:
5050
5151
### Code versions
5252

53-
# [Version 1.5.0](#tab/version-1-5-0)
53+
# [SDK](#tab/SDK)
5454

5555
```python
5656
pip uninstall azure-ai-ml
5757
pip install azure-ai-ml
58-
pip show azure-ai-ml
58+
pip show azure-ai-ml #(the version value needs to be 1.5.0 or later)
5959
```
6060

61-
# [Version 2.15.1 or later](#tab/version-2-15-1-or-later)
61+
# [CLI](#tab/CLI)
6262

6363
```cli
6464
az extension remove -n ml
6565
az extension add -n ml --yes
66-
az extension show -n ml
66+
az extension show -n ml #(the version value needs to be 2.15.1 or later)
6767
```
6868

6969
---

0 commit comments

Comments
 (0)