Skip to content

Commit cfc8d7d

Browse files
authored
Merge pull request #85394 from tot0/patch-8
Add known SDK install issue and workaround.
2 parents 07df476 + 3f3527a commit cfc8d7d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ Azure Machine Learning SDK for Python: PyYAML is a distutils installed project.
4545
pip install --upgrade azureml-sdk[notebooks,automl] --ignore-installed PyYAML
4646
```
4747

48+
**Error message: `ERROR: No matching distribution found for azureml-dataprep-native`**
49+
50+
Anaconda's Python 3.7.4 distribution has a bug that breaks azureml-sdk install. This issue is discussed in this [GitHub Issue](https://github.com/ContinuumIO/anaconda-issues/issues/11195)
51+
This can be worked around by creating a new Conda Environment using this command:
52+
```bash
53+
conda create -n <env-name> python=3.7.3
54+
```
55+
Which creates a Conda Environment using Python 3.7.3, which doesn't have the install issue present in 3.7.4.
56+
4857
## Trouble creating Azure Machine Learning Compute
4958

5059
There is a rare chance that some users who created their Azure Machine Learning workspace from the Azure portal before the GA release might not be able to create Azure Machine Learning Compute in that workspace. You can either raise a support request against the service or create a new workspace through the Portal or the SDK to unblock yourself immediately.

0 commit comments

Comments
 (0)