[PyInstaller] Re: Streamlit app

2024-03-29 Thread bwoodsend
Never try to run a Python command line entry point from a subprocess. Even without PyInstaller involved, there’s no guarantee that it’ll be findable. Lookup what the entry point does (in this case calling from streamlit.web.cli.main()

[PyInstaller] Streamlit app

2024-03-29 Thread Daniel Juschus
Hello, I just cannot manage to package a simple Streamlit app (a library for creating browser-based GUIs). I have read through all the material on the Pyinstaller website and the Github wiki. This is my main.py: import streamlit as st st.text("This program is running") and this is my

[PyInstaller] Streamlit app

2024-03-29 Thread Daniel Juschus
Hello, I just cannot manage to package a simple Streamlit app (a library for creating browser-based GUIs). This is my main.py: ```python import streamlit as st st.text("This program is running") ``` And -- You received this message because you are subscribed to the Google Groups