Hi,
I have found streamlit and it seems to be really cool.
The problem is, I cannot get it running:
I installed it with via conda using the conda-forge channel which worked very well and shows up under conda list
.
I tried streamlit hello
but it threw an error with No module named streamlit.__main__; 'streamlit' is a package and cannot be directly executed
.
So I uninstalled my complete anaconda, installed miniconda, set up new environment called minimal. I added conda-forge as strict channel and installed some “usual” packages (pandas, altair, etc). Checked that the environment it works with some other python files.
But when I try streamlit hello
or something similar I get:
C:\Users\username\Miniconda3\envs\minimal\python.exe: No module named streamlit.__main__; 'streamlit' is a package and cannot be directly executed
It seems to find the executable just fine:
(minimal) C:\Users\user>where streamlit
C:\Users\user\Miniconda3\envs\minimal\Scripts\streamlit
C:\Users\user\Miniconda3\envs\minimal\Scripts\streamlit.cmd
Can you help me get it running? I do not really understand what the error is telling me, I am somewhat new to python.