Hey @Cellule_Boukham ,
If I’m reading your screenshot correctly, this looks like a Python environment issue, where for some reason the streamlit
executable is not in your $PATH
. Can you post a few pieces of data to help debug?
-
How exactly did you install Streamlit?
- pip install streamlit
- pip3 install streamlit
- sudo pip install streamlit
- pip install streamlit --user
- Something else?
-
Can you post the output of these commands?
$ echo $PATH
$ which python
$ which streamlit
- What do you get when you try this:
$ python # (or python3 if you used pip3)
>>> import streamlit
>>> streamlit.__file__