Brazilian E-Commerce Analysis with python, from Kaggle dataset. This data collected by olist one of e-commerce at brazil, and the data contain many record order from user such as order customer, date order, product, etc.
git clone https://github.com/AgufSamudra/e-commerce-analysis.git
After your clone this repo you just in to path and install the requirements.txt, Follow this guide:
python3 -m venv [name_of_your_enviroment]
source [name_of_your_enviroment]/bin/activate
pip3 install -r requirements.txt
streamlit run dashboard.py
and then if your users of Windows
you can follow this guide:
python -m venv [name_of_your_enviroment]
./[name_of_your_enviroment]/bin/activate
pip install -r requirements.txt
streamlit run dashboard.py