Hello all,
I’m new with Streamlit.
I’m trying to use Streamlit Cloud to share a small app with my colleagues.
This app behavior is to ask the user where their data is stored on their computer, and then to launch a command line to do some operations with an external software.
This software show through a windows terminal it’s progression while operating on datas (and that’s why I want to open a terminal).
For this example, let’s consider an easier command.
On my local Streamlit on Windows, I can use the command os.system(“start cmd /k echo HELLO”).
Then, a terminal popup appears with “HELLO”.
When I deploy my app on Streamlit Cloud, I do the same command but this occurs :
sh: 1: start: not found
I understand that the command start don’t work like this with Streamlit cloud (as maybe windows is not in the cloud environnement ?)
Do you have any idea about how to deal with this ?
Thanks in advance for your time !