Hi @Seven_B_Shoe ,
I just had the same issue on AWS EC2.
My Env is Python 3.8.10.
I’ve tried to install streamlit==1.11.0. But when streamlit cli runs, it occurs errors.
So I reinstalled streamlit==1.26.0 again.
With this 1.26.0 version, streamlit cli runs perfectly, but the page is stuck at “please wait” page.
Me too. I used Nginx proxy and the streamlit app is running on 8080
but it is stuck on please wait page
After getting stuck for a long time with the “Please wait…” message on an Apache server, I finally found a line of command line script that saved me. Based on what it’s doing and the original GitHub issue, I’m guessing this will work for Nginx as well. See aalbinati
’s response on Streamlit is stuck after redirecting port with Apache and Nginx · Issue #1555 · streamlit/streamlit · GitHub.
On the command line, run:
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8501
Replacing 8501 with whatever port you are running your streamlit app on if different, of course.