Is it necessary and must to have anaconda installed to install and use streamlit in windows machine?
Is it must to have anaconda installed to install and use streamlit in windows machine?
If applicable, please provide the steps we should take to reproduce the error or specified behavior.
No, you can use pip as well.
pip
Thanks for your response. I have py 3.9.15 installed. I did pip install streamlit, and it installed streamlit, but when I run streamlit hello it says ‘streamlit not recognised’, I am using correct spelling.
Try this instead:
py -3.9 -m streamlit hello
It worked. Thanks, Goyo. Appreciate your help.