python3 -m venv .venvsource .venv/bin/activatepip install --upgrade pippip install -r requirements.txtpython3 main.py← Launches the GUI application
python -m venv .venv.venv\Scripts\activatepip install --upgrade pippip install -r requirements.txtpython main.py← Launches the GUI application
To test file extraction without the GUI:
python3 test.pyThe project now uses MVC architecture for better organization:
- Model (
model/) - Graph data structures, file ingestor, similarity calculations - Controller (
controller/) - Graph building logic, background workers - View (
view/) - Qt GUI components
See ARCHITECTURE.md for detailed structure documentation.