Rerun my multi page app when update it

Hi,
i am running a multi-page app with structure like this:

Home.py 
└─── Pages/
  └─── 1_Page1;py
  └─── 2_Page2.py 
  └─── 3_Page3.py 

then I run my code with:

streamlit run "Home.py"

but when I change a part of my code after that it did not seem to do something in the internet page that was launched. I also click o the Rerun button but nothing happens.

I need to close the internet page and relaunch streamlit run "Home.py" to have my modification taken into account.

It is strange because when I did not use mutli-page, it works perfectly and Rerun button works fine.

Rectification: it seems that even when I am running streamlit run "1_Page1.py"the Rerun button doesn’t work. It seems impossible to Rerun my app

Rectification2: it seems that when I copy my file in an other directory it works fine !
is it linked to the structure of my folder ?

Thx for your help.

I think I found my error:
it is because I named Pages instead of pages the folder !

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