Reputation: 12476
I'm trying to create a new bot using the v4 bot framework. For that I'm following the enterprise bot template: https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-enterprise-template-overview?view=azure-bot-service-4.0. In the readme it says I should run az extension add -n botservice
. When I run this, I get an error that the extension 'botservice' can't be found. How do I solve this?
Upvotes: 1
Views: 216
Reputation: 2227
The documentation hasn't been updated yet. The current version of azure-cli (2.0.53) ships with botservice as a core module. Azure CLI 2.0.53 does not use the botservice extension. Run
az extension remove -n botservice
and then try to continue the steps of the tutorial from there.
Upvotes: 1