Thank you thank you so much. Today I have built the app and finally deployed it just because of you ❤. Thank you veryyyy much 😊
@sheikhobada830511 ай бұрын
Great Explanation Professor. Thank you
@digithat6496 Жыл бұрын
Awesome that's great. Is it recommended to do blogging with streamlit?
@williamliu935 ай бұрын
Great job for making such a clear tutorial! I just deployed my first app:)
@biovida93 күн бұрын
Great Explanation Professor, m app ask for gTTS, how install on streamlit, any help?
@_._Harsh_._6 ай бұрын
Thank you so much! This was very much needed!!
@pattamalaokarnchanakorn4888 Жыл бұрын
Very good topics
@pingalihemanthsaivikas9654Ай бұрын
That's really helped me!!!! Thanks a lot
@shahrukhahmad41276 ай бұрын
Superb and easy to use, thanks a ton man!
@jackychan4640 Жыл бұрын
Happy New Year
@InteligenciadeNegocios Жыл бұрын
Good Afternoon Professor, thank you for this example. Can you please in the future make the same example but adding information from an excel file? Will be very helpful for me, i have tried this for a long time Thank you!
@kelvinndeti54827 ай бұрын
Thankyou bro i really needed this
@souravbarua3991 Жыл бұрын
This is very helpful. Thank you.
@hardroko Жыл бұрын
Thank you for sharing this
@JamesRBentley Жыл бұрын
Excellent video !
@BrokenRecord-i7q Жыл бұрын
Thanks professor, however its taking ages to render!
@DataProfessorАй бұрын
Hi, with the recent use of uv over pip in recent months, the app should deploy much much faster now
@MannyBernabe Жыл бұрын
EPIC! Thank you!
@nkipa7 ай бұрын
Thanks, great video
@TahaKhandker Жыл бұрын
Thanks, learned a lot!
@michikoshin9309Ай бұрын
Thank you so much.
@KumR4 ай бұрын
Thanks sir.. if the streamlit app has references to api key..how is that to be managed? Also screens look so different now.. I just uploaded the py but it errored with module not found.
@streamlitofficial4 ай бұрын
Hi, the module not found error suggests that dependency libraries are missing. Can you make sure to create requirements.txt file that contains a list of dependent Python libraries.
@AlickZhang-s3r8 ай бұрын
can you show how to deploy streamlit cloud app that leverages selenium chrome (headless) thanks!
@shadow_general-t1c4 ай бұрын
really thank you
@gautam394510 ай бұрын
Thank You Sir!
@luisfernandoperezarmas71989 ай бұрын
Thank you so much 😁
@shibahotdog7 ай бұрын
Fast and easy. Thanksss
@Aditya-xg6er10 ай бұрын
My app have db also. I am thinking of adding functionality to upload files and folder also. Will that be deployable their.
@ularkadutdotnet Жыл бұрын
awesome
@lazuardialmuzaki44894 ай бұрын
quite nice of a video
@williansuarez3988 Жыл бұрын
Buen video, hay otra opción a streamlit llamada taipy ¿que opinas?
@cubasdf5 ай бұрын
very good!
@NUKE_001 Жыл бұрын
very good video
@joshjeli2 ай бұрын
I have an error with requirements.txt, even though I just wrote the 2 simple lines like you in this video. Do you know why this is happening?
@sivaramsathiamoorthi8718 күн бұрын
Yeah for that you have play with the compatibility version a little but. The best practice is better to develop any python oriented app on Linux OS than windows
@joschomo10109 ай бұрын
Very useful, but what if you made your app on windows? Ie, the requirements.txt has alot of libraries that are not compatible with streamlit linux enviroment.
@sivaramsathiamoorthi8718 күн бұрын
Yeah for that you have play with the compatibility version a little but. The best practice is better to develop any python oriented app on Linux OS than windows
@joschomo101018 күн бұрын
@sivaramsathiamoorthi87 yeah I switched to Linux shortly after this.
@sohailshaikh9872 Жыл бұрын
I have a problem to deploy a new app and have problem I'm App URL
@МуслимбекНорматов11 ай бұрын
Thanks!!
@ecityresident7909 Жыл бұрын
hou to install packages using yml file for the deployed app
@Lol_alice12349 ай бұрын
thank you!
@GeekendZone8 ай бұрын
Thanks!
@BaljeetSingh-nx4cf7 ай бұрын
It's showing me you do not have access to this app or it does not exist
@farakh-h8r3 ай бұрын
Can we use it for publication purposes?
@streamlitofficial2 ай бұрын
Deployed apps have sharable URL so you could include them in your research paper, if that's what you mean.
@rohitray5947Ай бұрын
When I deployed my app, it is showing an error that ModuleNotFoundError: No module named 'sklearn' when I opened the manage app option. What is the solution for this?
@DataProfessorАй бұрын
Have you tried adding scikit-learn to your requirements.txt when deploying to the Community Cloud? This recent video was also released to show how to resolve the issue kzbin.info/www/bejne/aYrYpZmQepZ-bZY
@rohitray5947Ай бұрын
@@DataProfessor It is resolved. Thank you
@alxx736 Жыл бұрын
Near the share button i have a github icon . I need to delete THAT
@CertifiedAuthur4 ай бұрын
Unfortunately, you can't rename your app in July 2024
@anurajms8 ай бұрын
thank you
@Chandude11 ай бұрын
How can I deploy without exposing my credentials?
@miguelquintero174510 ай бұрын
Environment variables “.env” and make sure to add them in the cloud provider you re using
@CertifiedAuthur4 ай бұрын
You have to sort it out on your code by creating a side bar where people can put their credentials
@RijoSLalАй бұрын
Like api?
@NUKE_001 Жыл бұрын
negative
@VelazDeportes8750 Жыл бұрын
Igot this error Traceback (most recent call last): File "/home/appuser/venv/lib/python3.9/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 565, in _run_script exec(code, module.__dict__) File "/app/spx/app.py", line 7, in excel_file = pd.ExcelFile("SPXDATA.xlsx") File "/home/appuser/venv/lib/python3.9/site-packages/pandas/io/excel/_base.py", line 1513, in __init__ self._reader = self._engines[engine](self._io, storage_options=storage_options) File "/home/appuser/venv/lib/python3.9/site-packages/pandas/io/excel/_openpyxl.py", line 548, in __init__ import_optional_dependency("openpyxl") File "/home/appuser/venv/lib/python3.9/site-packages/pandas/compat/_optional.py", line 145, in import_optional_dependency raise ImportError(msg) ImportError: Missing optional dependency 'openpyxl'. Use pip or conda to install openpyxl.