Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 506 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 506 Bytes

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