来自 zipfile 的 Webjobs 运行错误 (3587fd: ERR) [英] Webjobs Running Error (3587fd: ERR ) from zipfile

查看:14
本文介绍了来自 zipfile 的 Webjobs 运行错误 (3587fd: ERR)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在一个名为 fgh.py 的文件中有以下小脚本,我一直在尝试将其安排为网络作业

将 pandas 导入为 pddf=pd.DataFrame({'a':[1,2,2],'b':[5,6,9]})df['x']=df.a.sub(df.b)打印(df)

使用@Peter Pan

另外来自 https://arcgistrial.scm.azurewebsites.net/DebugConsole 我在运行 cmd 命令时得到以下信息 python -V

在我的 run.bat 文件中,我尝试使用上述任一目录均未成功.

我是制作我的 run.bat 文件 D:homepython364x64python.exe fgh.py 还是 D:python364x64python.exe fgh.py 我收到以下错误;

我已经开始安装 pandas 并通过尝试安装 numpy 检查是否成功

这一切都没有帮助.我已经做了几天了,它必须以某种方式工作.有什么帮助吗?

解决方案

(在旧的 Webjobs 中运行带有依赖项的 python 任务并不是很简单.已经有一段时间了,世界已经转向

  1. 创建一个包含 pandasnumpyrequirements.txt 文件(请注意,由于

    1. 上传网络作业的 zip.
    2. 运行作业 :)

    忽略错误ModuleNotFoundError: No module named 'certifi'",不需要.

    I have the following small script in a file named fgh.py which I have been attempting to schedule as a webjob

    import pandas as pd
    
    df=pd.DataFrame({'a':[1,2,2],'b':[5,6,9]})
    
    df['x']=df.a.sub(df.b)
    
    print(df)
    

    Using @Peter Pan post. I have created a virtual environment, done a pip install pandas. From the virtual environment, the script runs and executes as required.It however does not execute when loaded in Azure Webjobs. I suspect issues arise from the interface between the run,bat file and the Azure python console but have limited understanding of Azure to resolve the issue

    In kudus, I have used this post to install python.

    Running where python in cmd command in https://myapp.scm.azurewebsites.net/DebugConsole I get;

    Additionally from https://arcgistrial.scm.azurewebsites.net/DebugConsole I get the following when I run cmd command python -V

    In my run.bat file, I have tried to use either of the directories above without success.

    Whether I make my run.bat file D:homepython364x64python.exe fgh.py or D:python364x64python.exe fgh.py I get the following error;

    I have gone a head and installed pandas and checked if successful by trying to install numpy

    All this has not helped. I have been on this for a couple of days and it has to work somehow. Any help?

    解决方案

    (Things are not quite straightforward in old Webjobs to run python task with dependencies. It has been quite some time, the world has moved on to Azure Function :))

    However, since you still need to stick to Webjobs, below are the steps I followed which worked. I am using a batch file (.cmd) to run the python script due to the pre-requisites.

    1. By default webjob supports python 2.7 at this moment. So, add python3 from 'extension' in your web app, In this case it was 3.6.4 x64 for me. This will add in path D:homepython364x64. How did I know? Kudus console :)

    1. Create a requirements.txt file which contains pandas and numpy (note I had to explicitly add numpy version 1.19.3 due to an issue with latest 1.19.4 in Windows host at the time of this writing). Basically I used your fgh.py which depends on pandas which in turn depends on numpy.

    pandas==1.1.4
    numpy==1.19.3
    

    1. Create a run.cmd file having the following content. Note 1st line is not needed. I was just checking python version.

    D:homepython364x64python --version
    D:homepython364x64python -m pip install --user --upgrade pip
    D:homepython364x64python -m pip install --user certifi
    D:homepython364x64python -m pip install --user virtualenv
    D:homepython364x64python -m virtualenv .venv
    .venvScriptspip install -r requirements.txt
    .venvScriptspython fgh.py
    

    1. Zip fgh.py, run.bat and the requirements.txt files into a single zip. Below is the content of my zip.

    1. Upload the zip for the webjob.
    2. Run the job :)

    Ignore the error "ModuleNotFoundError: No module named 'certifi'", not needed.

    这篇关于来自 zipfile 的 Webjobs 运行错误 (3587fd: ERR)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆