2

在 Azure ML Workspace Notebook 上,我正在尝试获取我的工作区实例,如在

https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-auto-train-models#configure-workspace。

我有一个配置文件,我正在 Azure 计算实例中运行笔记本。

我试图执行 Workspace.from_config()。

结果,我收到“MSIAuthentication”对象没有属性“get_token”错误。

我尝试同时提交MsiAuthenticationand InteractiveLoginAuthentication,如建议的那样

https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/manage-azureml-service/authentication-in-azureml/authentication-in-azureml.ipynb。

4

1 回答 1

2

我找到了2个解决方案:

1.- 使用内核“Python 3.6 - AzureML”

2.-pip install azureml-core --upgrade

这将升级

azureml-core 到 1.32.0

但会降级

azure-mgmt-resource 到 13.0.0(原为 18.0.0)

azure-mgmt-storage 降至 11.2.0(原为 18.0.0)

urllib3 到 1.26.5(原为 1.26.6)

此升级/降级允许与 python 3.6 anaconda 安装中相同的软件包版本

于 2021-07-08T14:10:50.150 回答