Hi, usually I run my streamit app on my Mac OS using Jupiter when I am testing things out but I now want to implement a streamline app at work.
In Jupyter, this is the cell I run to view my app in the browser:
!jupyter nbconvert --to script Streamlit_test.ipynb
!awk '!/ipython/' Streamlit_test.py > temp.py && mv temp.py app.py && rm Streamlit_test.py
!streamlit run app.py
However this does not work in windows! How would one usually preview their streamlit app in windows?
Thanks