Install dependencies
python -m pip install -r requirements.txt
Build exe
./build.bat
If you have erros when building (e.g. The .exe does not compile)
Try making a virtual env See example here
python -m venv env
# Activate the env (env/Scripts/activate)
# Reinstall dependencies
pip install -r requirements.txt
# And rebuild with either the build.bat or the first command inside