forked from Azure/azureml-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmisc.sh
More file actions
28 lines (21 loc) · 666 Bytes
/
misc.sh
File metadata and controls
28 lines (21 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## IMPORTANT: this file and accompanying assets are the source for snippets in https://docs.microsoft.com/azure/machine-learning!
## Please reach out to the Azure ML docs & samples team before before editing for the first time.
# <az_extension_list>
az extension list
# </az_extension_list>
# <az_ml_install>
az extension add -n ml
# </az_ml_install>
# <az_ml_update>
az extension update -n ml
# </az_ml_update>
# <az_ml_verify>
az ml -h
# </az_ml_verify>
# <az_account_set>
az account set -s "<YOUR_SUBSCRIPTION_NAME_OR_ID>"
# </az_account_set>
# <az_extension_remove>
az extension remove -n azure-cli-ml
az extension remove -n ml
# </az_extension_remove>