ModuleNotFoundError when starting celery in Django project
Advertisements I have a Django project structure like this (not showing all the files/folders): myproj/ ├── __init__.py ├── config/ │ ├── __init__.py <– imports `celery_app` as per docs │ ├── settings/ │ │ ├── __init__.py │ │ └── base.py │ ├── celery.py <– defines `app = Celery("myproj")` │ └── wsgi.py ├── myapp1/ └── myapp2/ I… Read More ModuleNotFoundError when starting celery in Django project