This application allows you to compare two Excel files and identify differences between them.
- Python 3.7 or higher
- pip (Python package installer)
- Install Python from python.org
- Open Command Prompt and navigate to the project directory
- Create a virtual environment:
python -m venv venv - Activate the virtual environment:
venv\Scripts\activate - Install required packages:
pip install -r requirements.txt
- Install Python using Homebrew:
brew install python - Open Terminal and navigate to the project directory
- Create a virtual environment:
python3 -m venv venv - Activate the virtual environment:
source venv/bin/activate - Install required packages:
pip install -r requirements.txt
- Activate the virtual environment (if not already activated)
- Run the application:
python excel_compare.py - Use the GUI to select two Excel files and compare them
- The main application code is in
excel_compare.py - Requirements are listed in
requirements.txt