Is there a primer anywhere for learning and understanding how this works?
Usually, when I install a package I just use pip, or the installer in pycharm.
I found myself very confused at trying to run streamlit. I've lost a day trying to figure it out
https://docs.streamlit.io/en/stable/
The instructions simply:
pip install streamlit
streamlit hello
I had a 32 bit of python recently and I replaced it with a 64 bit. Is that causing the python38-32 vs Python38 error below?
Fatal error in launcher: Unable to create process using ‘“c:\users\user\appdata\local\programs\python\python38-32\python.exe” “C:\Users\user\AppData\Local\Programs\Python\Python38\Scripts\streamlit.exe” hello’: The system cannot find the file specified.
I tried:
C:\Users\user>python -m streamlit hello
C:\Users\user\AppData\Local\Programs\Python\Python38\python.exe: No module named streamlit.__main__; 'streamlit' is a package and cannot be directly executed
I'm not sure where it's getting this from:
local\programs\python\python38-32\python.exe
That doesn't exist, I only have:
Local\Programs\Python\Python38\
And that's what's in the path for windows
I’m wondering if anyone could help. Thanks
Doc should say:> streamlit run app.py
try: python streamlit run hello