How to compile GUI after making changes to code

I downloaded your folder, went into the GUI subfolder, and the dist\app\app.exe did not run for me. I was able setup a virtual environment, build, and run and executable with no issue:

python -m venv .venv
.venv\Scripts\activate
python -m pip install pip wheel --upgrade
python -m pip install -r requirements.txt
python build.py # if this not a git repo, edit line 12 to just be `"AVRGUI",`
.\dist\AVRGUI.exe

I used Python 3.10.10 on Windows 11.

2 Likes