问题描述
WebJobs怎么安装Python包?
问题解答
第一步:登录到App Service的高级管理工具(Kudu:https://<webappname>.scm.chinacloudsites.cn)
第二步:点击Site Extension, 搜索 Python,选择需要的版本进行安装
第三步:第二步安装完成后,点击Kudu目录进入Debug Console页面(CMD), 如安装 tornado 包,使用 pip install tornado 执行安装
第四步:在当前目录 Lib\\site-packages中检查 tornado 包是否存在
参考文档
Running Python Webjob on Azure App Services using non-default python version:https://azureossd.github.io/2016/12/09/running-python-webjob-on-azure-app-services-using-non-default-python-version/
创建计划的 Web 作业:https://docs.microsoft.com/zh-cn/azure/app-service/webjobs-create#CreateScheduledCRON