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:
pipx install delete-me-discordpip install delete-me-discordUse this if you already manage Python environments yourself.
Prebuilt binaries
Section titled “Prebuilt binaries”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:
nix run github:janthmueller/delete-me-discord -- --helpFor 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];Verify
Section titled “Verify”dmd --versionOnce the CLI is installed, continue with Authentication and then First Run.