在部署Python Function App之后,当我尝试在Azure云上运行它时,它失败并显示以下错误:如何在运行App Service的计算机上安装Azure存储?请帮忙。
将azure.functions导入为func 导入日期时间
导入os,uuid,sys 从azure.storage.blob导入BlockBlobService,PublicAccess ..... ......
答案 0 :(得分:0)
连接到Azure CLI,或者也可以从Azure门户打开Azure CLI。
创建存储帐户:
az存储帐户创建--name --location --resource-group --sku Standard_LRS
Ex:- az存储帐户create --name apistorage --location westindia --resource-group apiGroup --sku Standard_LRS
创建资源组:
az组创建--name --location
Ex:-
az group create --name apiGroup --location westindia
现在,您可以从CLI创建天蓝色函数:
Ex:- az functionapp create --resource-group apiGroup --os-type Linux --consumption-plan-location westindia --runtime python --name ServiceName --storage-account apistorage
参考:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-python