mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 09:19:51 +00:00
72b0da3d03
From the README: pipx is a tool to help you install and run end-user applications written in Python. It's roughly similar to macOS's brew, JavaScript's npx, and Linux's apt. It's closely related to pip. In fact, it uses pip, but is focused on installing and managing Python packages that can be run from the command line directly as applications. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
6 lines
79 B
Bash
6 lines
79 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" = pipx ] || exit 0
|
|
|
|
pipx --version | grep -Fx "$PKG_VERSION"
|