Hi all,
I have a project with the following structure:
root/jumping_frog/module.py
root/ui/streamlit_app.py
From the root directory I am typing:
streamlit run ui/streamlit_app.py
and at the top of my streamlit_app.py I have
from jumping_frog.module import JumpingFrog
When I run the streamlit it cannot find the module jumping_frog, which I think is very weird. Can someone help me what I am doing wrong? Basiaclly, I just want root to be the working directory when I launch my streamlit app.