Hi Jothi Thondiraj ,
Thank you for reaching out on Microsoft Q&A.
Unfortunately, removing system extensions like ml isn't currently possible. Here are a couple of ways to achieve your goal:
Direct Downgrade:
This is the easiest option. Run the following command in your Cloud Shell session:
az extension add --upgrade --name ml --version 2.25.0
This command will downgrade the ml extension to version 2.25.0.
Local Environment:
If the direct downgrade doesn't work, consider setting up a local Azure CLI environment. This gives you more control over extensions. Here's a more detailed approach:
- Install Azure CLI: Follow the official guide.
- Remove any existing ml extension (if present):
az extension remove -n ml
- Install the desired version:
az extension add --name ml --version 2.25.0
By following either of these approaches, you should be able to switch to the specific ml version you need.
I hope this helps! If you have any further questions, feel free to ask.
For more information on managing extensions, you can refer to the official documentation.
If the information is useful, please accept the answer and upvote it to assist other community members.