checkpack
Tiny library to check if a system package is already installed.
Summary
| Latest Version | 0.3.0 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-09-01 07:18 |
Tags
Authors
- Arnaud Moura
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 | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 1.2.0 | No |
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
