nrf_dfu_py

(★ 24)

BLE DFU update tool for linux/windows/mac

File Explorer

  • .gitignore
  • dfu_cli.py
  • dfu_gui.py
  • dfu_lib.py
  • README.md
  • requirements.txt

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pyinstaller

View Details ▼

Bundle a Python application and its dependencies into a single package.

pyinstaller {{path/to/script.py}}

Bundle a Python script into a one-folder bundle (output goes to `dist/`):

pyinstaller {{[-F|--onefile]}} {{path/to/script.py}}

Bundle a Python script into a single executable file:

pyinstaller {{[-w|--windowed]}} {{path/to/script.py}}

Bundle a GUI application without opening a console window:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

apt-get

View Details ▼

Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.

sudo apt-get update

Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):

sudo apt-get install {{package}}

Install a package, or update it to the latest available version:

sudo apt-get remove {{package}}

Remove a package:

// repository documentation