This folder contains DepthAI utility tools.
device_manager.py
helps interfacing with the device Bootloader and bootloader configuration. See Device Manager Usage to see how to use this utility.
Requirements:
# Linux/macOS
python3 -m pip install pyinstaller
# Windows
python -m pip install pyinstaller
To build standalone executable issue the following command:
pyinstaller --onefile -w --icon=assets/icon.ico --add-data="assets/icon.ico;assets" --add-data="assets/icon.png;assets" device_manager.py
Optionally, append --runtime-tmpdir [path or .]
to modify where the temporary directory should be created when launched.