Skip to content

Installation

Choose the install method that best matches how you want to run the CLI.

Python-based installs require Python 3.10 or newer.

After installation, you can use either delete-me-discord or the shorter alias dmd.

Recommended for CLI isolation:

Terminal window
pipx install delete-me-discord
Terminal window
pip install delete-me-discord

Use this if you already manage Python environments yourself.

Download the asset for your OS from the latest GitHub release, extract it, and run it from a terminal.

Prebuilt archives include both delete-me-discord and the shorter alias dmd.

If you already use Nix with flakes enabled, you can run the CLI directly from the repository:

Terminal window
nix run github:janthmueller/delete-me-discord -- --help

For declarative use in your own flake, add the repository as an input:

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
delete-me-discord.url = "github:janthmueller/delete-me-discord";
};
}

Then reference the package in Home Manager or NixOS:

home.packages = [
delete-me-discord.packages.${pkgs.system}.default
];
environment.systemPackages = [
delete-me-discord.packages.${pkgs.system}.default
];
Terminal window
dmd --version

Once the CLI is installed, continue with Authentication and then First Run.