gpt4 book ai didi

python - 模块未找到错误: No module named 'dash_appdashboard'

转载 作者:行者123 更新时间:2023-12-03 03:46:03 25 4
gpt4 key购买 nike

我有一个用 Python 编写的小型网络应用程序。我在 Docker 容器中运行它。在本地,网络应用程序运行良好。当我将容器部署到 Azure 应用服务时,当我尝试浏览网站时出现以下错误:

2021-09-14T10:10:18.769704271Z [2021-09-14 10:10:18 +0000] [6] [INFO] Starting gunicorn 20.1.0
2021-09-14T10:10:18.778481220Z [2021-09-14 10:10:18 +0000] [6] [INFO] Listening at: http://0.0.0.0:5000 (6)
2021-09-14T10:10:18.778869426Z [2021-09-14 10:10:18 +0000] [6] [INFO] Using worker: sync
2021-09-14T10:10:18.796613327Z [2021-09-14 10:10:18 +0000] [8] [INFO] Booting worker with pid: 8
2021-09-14T10:10:18.809302941Z [2021-09-14 10:10:18 +0000] [8] [ERROR] Exception in worker process
2021-09-14T10:10:18.809318741Z Traceback (most recent call last):
2021-09-14T10:10:18.809323541Z File "/usr/local/lib/python3.8/site-packages/gunicorn/arbiter.py", line 589, in spawn_worker
2021-09-14T10:10:18.809327442Z worker.init_process()
2021-09-14T10:10:18.809330842Z File "/usr/local/lib/python3.8/site-packages/gunicorn/workers/base.py", line 134, in init_process
2021-09-14T10:10:18.809334442Z self.load_wsgi()
2021-09-14T10:10:18.809337742Z File "/usr/local/lib/python3.8/site-packages/gunicorn/workers/base.py", line 146, in load_wsgi
2021-09-14T10:10:18.809377242Z self.wsgi = self.app.wsgi()
2021-09-14T10:10:18.809381742Z File "/usr/local/lib/python3.8/site-packages/gunicorn/app/base.py", line 67, in wsgi
2021-09-14T10:10:18.809385343Z self.callable = self.load()
2021-09-14T10:10:18.809388643Z File "/usr/local/lib/python3.8/site-packages/gunicorn/app/wsgiapp.py", line 58, in load
2021-09-14T10:10:18.809392143Z return self.load_wsgiapp()
2021-09-14T10:10:18.809395543Z File "/usr/local/lib/python3.8/site-packages/gunicorn/app/wsgiapp.py", line 48, in load_wsgiapp
2021-09-14T10:10:18.809399143Z return util.import_app(self.app_uri)
2021-09-14T10:10:18.809403243Z File "/usr/local/lib/python3.8/site-packages/gunicorn/util.py", line 359, in import_app
2021-09-14T10:10:18.809406943Z mod = importlib.import_module(module)
2021-09-14T10:10:18.809410243Z File "/usr/local/lib/python3.8/importlib/__init__.py", line 127, in import_module
2021-09-14T10:10:18.809413743Z return _bootstrap._gcd_import(name[level:], package, level)
2021-09-14T10:10:18.809417043Z File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
2021-09-14T10:10:18.809420743Z File "<frozen importlib._bootstrap>", line 991, in _find_and_load
2021-09-14T10:10:18.809424243Z File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked
2021-09-14T10:10:18.809427643Z ModuleNotFoundError: No module named 'dash_appdashboard'
2021-09-14T10:10:18.809430943Z [2021-09-14 10:10:18 +0000] [8] [INFO] Worker exiting (pid: 8)
2021-09-14T10:10:18.971352582Z [2021-09-14 10:10:18 +0000] [6] [INFO] Shutting down: Master
2021-09-14T10:10:18.971814189Z [2021-09-14 10:10:18 +0000] [6] [INFO] Reason: Worker failed to boot.

我的dockerfile是:

FROM python:3.8-slim-buster

EXPOSE 5000

ENV PYTHONDONTWRITEBYTECODE=1

ENV PYTHONUNBUFFERED=1


COPY requirements.txt .
RUN python -m pip install -r requirements.txt

WORKDIR /app
COPY . /app

RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
USER appuser

CMD gunicorn --bind 0.0.0.0:5000 dash_app\dashboard:server

The folder structure of my project

我是在 azure 上部署 dockerized python webapp 的新手。任何帮助将不胜感激。

最佳答案

在您的 dockerfile 中,您在输出中写入了“dash_app\dashboard”,但缺少反斜杠:“dash_appdashboard”。我会尝试逃避反斜杠。

在 dockerfile 中添加最后一行:

CMD gunicorn --bind 0.0.0.0:5000 dash_app\\dashboard:server

关于python - 模块未找到错误: No module named 'dash_appdashboard' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69176351/

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