I’m receiving this error when I’m compiling my streamlit app
Successfully installed markdown-it-py-4.0.0 mdurl-0.1.2 pygments-2.20.0 rich-15.0.0
[notice] A new release of pip is available: 24.0 -> 26.1
[notice] To update, run: pip install --upgrade pip
I’ve others who are using the same app - but have no issues.
Can you advise.
Thank you,
Charmaine
──────────────────────────────────────────────────────────
Welcome to the Streamlit community, Charmaine!
Thanks for sharing your question. The message you posted isn’t actually an error—it’s just a notification that pip (the Python package installer) has a newer version available. The lines:
[notice] A new release of pip is available: 24.0 → 26.1
[notice] To update, run: pip install --upgrade pip
are informational and don’t affect your app’s functionality. If your app is running as expected, you can safely ignore these notices. If you’re seeing other errors or your app isn’t working, please share the full error message and a minimum reproducible example so the community can help debug! For more on dependency management and common deployment issues, see the official docs on app dependencies.
Sources: