如何使用 PowerShell 连接到 Azure 机器学习 Web 服务?
how connect to Azure Machine Learning Web service using PowerShell?
要使用 Azure 机器学习 Web 服务 here,您可以在 C#、R、Python 和 JavaScript 中找到一些示例代码。我想在 PowerShell 中使用它。
我找到了 this 教程,但是当我在 运行 下面的代码行时,它会 return 无法识别的错误:
Set-AzureMLWebServiceConnection -URI $Url -APIKey $API_key
Output:
Set-AzureMLWebServiceConnection : The term 'Set-AzureMLWebServiceConnection' is not recognized as the name of a cmdlet, function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Users\Reza\Desktop\ndbench\Azure\Automation_get_metrics\add_target_to_tables - runbook_01.ps1:33 char:1
+ Set-AzureMLWebServiceConnection -URI $Url -APIKey $API_key
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Set-AzureMLWebServiceConnection:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我在我的 PowerShell 命令列表中找不到 Set-AzureMLWebServiceConnection
,我不知道如何 enable/install 它。
你能指导我如何使用 PowerShell 连接到 Azure 机器学习 Web 服务吗?
@gvee 提到的评论可能是最好的使用方式,尽管它处于测试阶段。
但是,要回答您的问题,请使用 Install-Module -Name AzureML
command 访问 Azure ML 命令。
要使用 Azure 机器学习 Web 服务 here,您可以在 C#、R、Python 和 JavaScript 中找到一些示例代码。我想在 PowerShell 中使用它。 我找到了 this 教程,但是当我在 运行 下面的代码行时,它会 return 无法识别的错误:
Set-AzureMLWebServiceConnection -URI $Url -APIKey $API_key
Output:
Set-AzureMLWebServiceConnection : The term 'Set-AzureMLWebServiceConnection' is not recognized as the name of a cmdlet, function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Users\Reza\Desktop\ndbench\Azure\Automation_get_metrics\add_target_to_tables - runbook_01.ps1:33 char:1
+ Set-AzureMLWebServiceConnection -URI $Url -APIKey $API_key
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Set-AzureMLWebServiceConnection:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我在我的 PowerShell 命令列表中找不到 Set-AzureMLWebServiceConnection
,我不知道如何 enable/install 它。
@gvee 提到的评论可能是最好的使用方式,尽管它处于测试阶段。
但是,要回答您的问题,请使用 Install-Module -Name AzureML
command 访问 Azure ML 命令。