checkpack
Tiny library to check if a system package is already installed.
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install checkpack
choosenim install checkpack
git clone https://gitlab.com/EchoPouet/checkpack
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| checkpack | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://gitlab.com/EchoPouet/checkpack |
|---|---|
| Homepage | https://gitlab.com/EchoPouet/checkpack |
| Registry Source | nimble_official |
README
checkpack
Tiny library to check if a system package is already installed.
Contributions are welcome.
Installation
Install checkpack with Nimble:
$ nimble install -y checkpack
Add Norm to your .nimble file:
requires "checkpack"
Usage
It's very simple. See following code:
import checkpack
if not checkPack("git"):
echo "Git not found"
Package manager support
The supported package manager are following:
- Windows:
- Chocolatey
- Linux:
- YUM
- DPKG
- RPM
- PACMAN
- APK
- MacOSX:
- Homebrew
