Powershell AzureML Get-AmlWorkspace

时间:2017-07-10 10:03:54

标签: powershell azure-machine-learning-studio

Get-AmlWorkspace : One or more errors occurred.
At line:1 char:1
+ Get-AmlWorkspace
+ ~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (:) [Get-AmlWorkspace], 
AggregateException
+ FullyQualifiedErrorId : 
System.AggregateException,AzureML.PowerShell.GetWorkspace

我正在尝试使用Powershell连接到Azure ML studio,因为它看起来像是一种管理工作区的简单方法。我已从https://github.com/hning86/azuremlps下载了dll文件并更改了我的config.json文件,但如果我尝试运行任何AzureML命令,则会收到上述错误。我已取消阻止DLL文件并导入AzureMLPS模块,我可以通过执行Get-ModuleGet-Command

来查看我尝试使用的模块和命令

有关我以前没有使用过Powershell的信息。

任何建议都非常感谢!

1 个答案:

答案 0 :(得分:2)

您是否在本地计算机上安装了Azure PowerShell安装程序? Click here 了解更多信息。

下载最新的 Azure PowerShell安装程序(4.3.1),然后在本地计算机上安装。然后使用Azure PowerShell模块和命令重试。

我去年五月使用Azure PowerShell 4.0.1安装了我的,并且命令Get-AmlWorkspace正在运行。

# Set local folder location
Set-Location -Path "C:\Insert here the location of AzureMLPS.dll"

# Unblock and import Azure Powershell Module (leverages config.json file)
Unblock-File .\AzureMLPS.dll
Import-Module .\AzureMLPS.dll

# Get Azure ML Workspace info
Get-AmlWorkspace

我身边的输出如下: enter image description here