不断收到错误
'func'不被识别为内部或外部命令,可操作程序或批处理文件。

当进入funccmd命令行时,按照本教程进行操作时,
我已经安装了python(3.7.3)和所有正确的扩展名,因此对于为什么会出现此问题感到困惑。
任何帮助,将不胜感激。
我不断收到错误消息
ModuleNotFoundError:没有名为“azure”的模块
对于第 4 行,下面是使用本教程import azure.functions as func
设计的初始化文件的代码
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
)
Run Code Online (Sandbox Code Playgroud)
对此的任何帮助将不胜感激!