gpt4 book ai didi

python - "ModuleNotFoundError"与使用 Python 的 Azure 函数应用程序

转载 作者:行者123 更新时间:2023-12-01 00:51:23 25 4
gpt4 key购买 nike

我不断收到错误

ModuleNotFoundError: No module named 'azure'

对于第 4 行,我导入 azure.functions 作为 func下面是我的初始化文件的代码,它是使用 tutorial 设计的。

import logging
import azure.functions as func

def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')

name = req.params.get('name')
if not name:
try:
req_body = req.get_json()
except ValueError:
pass
else:
name = req_body.get('name')

if name:
return func.HttpResponse(f"Hellod {name}!")

else:
return func.HttpResponse(
"Please pass a name on the query string or in the request body",
status_code=400
)

任何有关此问题的帮助将不胜感激!

最佳答案

您是否在 python 环境中 pip 安装了该库?

pip install [client library]

可以找到客户端库 here

关于python - "ModuleNotFoundError"与使用 Python 的 Azure 函数应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56546175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com