How to build an EDA app using Pandas Profiling | Streamlit #19
Launch the web app:
To recreate this web app on your own computer, do the following.
Firstly, we will create a conda environment called eda
conda create -n eda python=3.8
Secondly, we will login to the eda environment
conda activate eda
Download requirements.txt file
wget https://raw.githubusercontent.com/dataprofessor/eda-app/main/requirements.txt
Pip install libraries
pip install -r requirements.txt
Download and unzip contents from https://github.com/dataprofessor/eda-app/archive/main.zip
streamlit run app.py