If you intend to build the app from source or contribute to the project, you will need the following tools (and their respective dependencies) installed:
- Python 3.5+
- PyInstaller
For Mac OS may need to install pyinstaller through homebrew
brew install pyinstaller
Run the following to install all python package dependencies:
pip install -r requirements.txt
To build executables run the following
pyinstaller --onefile main.spec
This will generate a new executable in dist
You can run the program by calling python main.py
.