Hi, I am trying to run an app that I made locally (Windows 11).
I am using this command:
start .\python.exe -m streamlit run .\app\my_app.pyw --server.headless true server.serverAddress "localhost"
my_app ends with .pyw because I want to hide the cmd window that opens.
However I get this error:
Error: Streamlit requires raw Python (.py) files, not .pyw.
Can you help me overcome this issue? Is there any configuration that I can do to steamlit to allow this?
thanks!