Explore some standard machine learning datasets with streamlit
Checkout the app : https://explore-ml-dataset-streamlit.herokuapp.com/
Checkout the article: https://digitaltesseract.com/2020/06/20/building-a-data-app-with-streamlit/
- Install virtualenv
pip install virtualenv
- Create a virtual environment (Here the name of the virtualenv is 'streamlitapp' you can name it whatever you want and it will be created on your pwd)
virtualenv streamlitapp
- Start the virtual environment
- Linux/Mac
source streamlitapp/bin/activate
- Windows
streamlitapp\Scripts\activate
pip install -r requirements.txt
streamlit run app.py