ofek / pyapp

Runtime installer for Python applications
https://ofek.dev/pyapp/
1.1k stars 24 forks source link

can this lib work with streamlit? #95

Closed sagregrevc closed 3 months ago

sagregrevc commented 3 months ago

can this lib work with local runnig streamlit with access to USB devices and outer .ini files? https://streamlit.io/

trappitsch commented 3 months ago

I don't really see why not. However, generally you need to start your local streamlit programs with streamlit run app.py, which you can't directly do here. So you would basically have to write a python script, which runs your streamlit app within streamlit, e.g., using subprocess.run. However, it becomes a bit tedious.

I guess one question is: Why streamlit then? I don't think it's really made for running it locally, you might be better off with a simple GUI if you want to deploy local...

sagregrevc commented 3 months ago

thank you

it much more simple for starting than other gui libs. "simple gui" with different lib eat additional few week for education.