Please take a moment to search the forum and documentation before posting a new topic.
If you’re creating a debugging post, please include the following info:
- Are you running your app locally or is it deployed?
- If your app is deployed:
a. Is it deployed on Community Cloud or another hosting platform?
b. Share the link to the public deployed app.
- Share the link to your app’s public GitHub repository (including a requirements file).
- Share the full text of the error message (not a screenshot).
- Share the Streamlit and Python versions.
im using Github and have my file structure in place - when creating streamlit APP - and create - it scrolls through progress hanging here - Processing triggers for libc-bin (2.36-9+deb12u13) …
Hey there, thanks for reaching out and sharing your deployment details!
When deploying a Streamlit app on Community Cloud, if the progress hangs at “Processing triggers for libc-bin (2.36-9+deb12u13) …”, it usually means the system is still installing dependencies or running post-install scripts. This step can take a while, especially if your requirements.txt or packages.txt includes many or heavy dependencies. However, if it hangs indefinitely, it may indicate a problem with your dependency files or an incompatible package.
To troubleshoot, double-check your requirements.txt for unnecessary packages (don’t include standard library modules), typos, or incompatible versions. Make sure all packages are compatible with Linux and Python 3.12+ (the default on Community Cloud). If you have a packages.txt, ensure only needed apt packages are listed. For more, see App dependencies for your Community Cloud app. If it still hangs, try rebooting the app or checking the Cloud logs for more details.
Sources: