A desktop application to create a bar chart race.
- create a virtual environment
- install required dependencies using
requirements.txt
- run
load_ui.py
This command will generate a desktop application for the operating system in which you are running this command. eg. .exe file if run on windows, .app file if run on mac.
pyinstaller load_ui.py --onefile --windowed --hidden-import cmath
If you need to include external files, use this command (adds folder fonts
to the build).
pyinstaller --add-data 'fonts:fonts' load_ui.py --onefile --windowed --hidden-import cmath