Skip to content

Commit db84e3e

Browse files
authored
Merge pull request #112533 from Aniththa/patch-45
Update resource-known-issues.md
2 parents bab8453 + b673e24 commit db84e3e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

articles/machine-learning/resource-known-issues.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,21 @@ Learn about the [resource quotas](how-to-manage-quotas.md) you might encounter w
7777
* Upgrade `azureml-sdk[automl]` package to the latest version.
7878
* Add `azureml-dataprep` version 1.1.8 or above.
7979
* Add `pyarrow` version 0.11 or above.
80+
81+
* **Pip Installation: Dependecies are not guaranteed to be consistent with single line installation**: This is a known limitation of pip as it does not have a functioning dependency resolver when you install as a single line. The first unique dependency is the only one it looks at. For example, if you are installing azure-ml-datadrift which requires version > 1.0 and azureml-train-automl which requires version < 1.2 and if the latest version is 1.3, when the user installs the packages in a single line as shown below, everything gets upgraded to 1.3 even though the azureml-train-automl package requires an older version.
8082

83+
* You will see inconsistent dependecies with single line installation.
84+
```python
85+
pip install azure-ml-datadrift, azureml-train-automl
86+
```
87+
88+
* To ensure the appropriate versions are installed for your packages, install using multiple lines like in the following code. Order doesn't matter here.
89+
90+
```python
91+
pip install azure-ml-datadrift
92+
pip install azureml-train-automl
93+
```
94+
8195
## Create and manage workspaces
8296

8397
> [!WARNING]

0 commit comments

Comments
 (0)