Hello, I'm facing module not found error while deploying a django application

this is the link for the repo i am using to deploy the django application

https://forex--genetic.streamlit.app/ this is the streamlit page
where it says the error
Traceback (most recent call last):
File “/home/adminuser/venv/lib/python3.11/site-packages/streamlit/runtime/scriptrunner/script_runner.py”, line 584, in _run_script
exec(code, module.dict)
File “/mount/src/forex-genetic/project/app/apps.py”, line 1, in
from django.apps import AppConfig
ModuleNotFoundError: No module named ‘django’

here is the requirements.txt

I’m new to streamlit can you help me deploy this application

From the docs:

Python requirements files should be placed either in the root of your repository or in the same directory as your Streamlit app.

That said, I don’t think you can run a django app that way.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.