A CLI to simplify the process of installing and upgrading packages installed through .deb files
  • Python 99.3%
  • Shell 0.7%
Find a file
2026-04-14 10:26:19 +01:00
LICENSES Update README.md, follow 'reuse' recommendation: add LICENSES folder containing the GPL-3.0 license 2026-04-08 17:18:16 +01:00
src Fix update command not working: replace incorrect global variable 'version' with local 'latest_version' 2026-04-14 10:26:19 +01:00
.gitignore Finish writing Discord recipe and installer (still in prototype stages) 2026-04-08 13:32:56 +01:00
LICENSE Setup argparse and Write prototype upgrade process using discord as test package 2026-04-07 17:25:02 +01:00
README.md Update README.md, follow 'reuse' recommendation: add LICENSES folder containing the GPL-3.0 license 2026-04-08 17:18:16 +01:00

debster

A CLI to simplify the process of installing and upgrading packages installed through .deb files

Usage

usage: debster [-h] {update,install,upgrade} ...

A CLI to simplify the process of installing and upgrading packages installed through .deb files

positional arguments:
  {update,install,upgrade}
                        The subcommand to be executed
    update              Updates package metadata
    install             Installs the specified package
    upgrade             Upgrades installed packages to their latest version

options:
  -h, --help            show this help message and exit

Motivation

Manually installing and updating packages via .deb files tends to become a chore once you have more than a couple of packages, this script allows you to do it from the command line as if you were using apt and Debian repositories.