@David Hughes Following up on your previous comment on an older thread.
- You would need to install azure cli first by following the steps on this page. Depending on your platform, choose the appropriate tab.
- If the Azure ML extension is already installed, you will need to run the command to create the workspace. Download the YAML file locally and save it in a path that is accessible to azure cli and use the local file name with
-f
parameter as seen above.-g
parameter needs the resource group name and--name
is the name of your workspace.
If ML cli extension is not installed, install the ML extension as mentioned here and then follow step 2.
az extension add -n ml
I hope this helps!!