Package repositories
You can install debusine from two different package repositories.
The Debian repository
debusine is available in the Debian archive, in sid (unstable) and trixie (testing).
If you want to run debusine on Debian 12, you will need to enable the bookworm-backports repository and install python3-django from that repository:
# Only needed on Bookworm
$ sudo tee /etc/apt/sources.list.d/bookworm-backports.list <<END
deb http://deb.debian.org/debian bookworm-backports main
END
$ sudo apt update
$ sudo apt install python3-django/bookworm-backports
The snapshot repository
This repository contains packages built out of the devel
branch of
debusine’s git repository. It can be used to test the next release that is
still in development.
$ curl -s https://freexian-team.pages.debian.net/debusine/repository/public-key.asc \
| sudo tee /etc/apt/trusted.gpg.d/debusine.asc
$ sudo tee /etc/apt/sources.list.d/debusine.list <<END
deb [arch=all] https://freexian-team.pages.debian.net/debusine/repository/ bookworm main
END
$ sudo apt update