Skip to content

Commit

Permalink
Merge pull request #20 from VitaliKStud/feature-implementation
Browse files Browse the repository at this point in the history
README-how-to-exe
  • Loading branch information
VitaliKStud authored Mar 16, 2024
2 parents 3bbd9a2 + 074d99c commit 90812d4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,28 @@ plot_hotkeys()
"12": "log_max"
}
```

### Create executable (.exe)

All dependencies are split out from the executable (app will be faster, but a folder
with dependencies).

Terminal:
```
pip install pyinstaller
cd src
pyinstaller video_labeler.py
```

---------------------------------
Just one file as executable (app will be slower, but only one file to execute).

Terminal:
```
pip install pyinstaller
cd src
pyinstaller video_labeler.py --onefile
```

This will create a "build" and a "dist" folder. Go to dist folder. There you
will find the executable.

0 comments on commit 90812d4

Please sign in to comment.