A step-by-step guide to running the automated Excel dashboard project on your local machine.
Prerequisites: Python
Ensure you have Python installed on your computer. This project was built using Python 3.8+, but any recent version of Python 3 should work.
Download PythonPython's installer typically includes pip
, the package manager we'll use in the next steps.
Get The Project Files
Create a new folder on your computer (e.g., C:\Projects\Superstore
). Download and place the following two files inside it.
(Note: Use the files you downloaded from the GitHub repository).
Install Required Libraries
Open a command prompt (Terminal on Mac/Linux, CMD or PowerShell on Windows), navigate to your project folder, and run the following command:
This will download and install all the necessary libraries for the project.
Launch Jupyter
In the same command prompt, run this command to start the Jupyter Notebook server:
This will automatically open a new tab in your web browser. From the file list, click on Superstore Dataset.ipynb
to open the notebook.
Run the Code & Get Your Dashboard
Inside the Jupyter Notebook, go to the menu bar at the top and click Cell
> Run All
. This will execute the entire script.
You will see the code run from top to bottom. Upon completion, a new file, Superstore_Dashboard.xlsx
, will be created in your project folder.