Bisq v1.10.0 Install on Debian Linux

Please be advised that the installation of the new Bisq version [1.10.0] on Debian Linux is dependent on the file libasound2t64 which is not included with any operating system version less than 13 (Trixie).

Thanks for reporting the devs have been made aware of this issue.

Thanks for your quick response…

Bisq 1.10.0 on Ubuntu 22.04 – Dependency Fix
Problem:
Bisq 1.10.0 requires libasound2t64, which only exists on Ubuntu 24.04+. On Ubuntu 22.04 you get this error:
bisq depends on libasound2t64; but it is not installed
Solution – create a dummy package:

Bash

sudo apt install equivs
cd /tmp
equivs-control libasound2t64
nano libasound2t64

Delete everything in the file and paste this:

Section: misc Priority: optional Standards-Version: 3.9.2 Package: libasound2t64 Version: 1.0 Maintainer: dummy Description: Dummy package for libasound2t64

Save with Ctrl+O → Enter → Ctrl+X, then:

Bash

equivs-build libasound2t64
sudo dpkg -i libasound2t64_1.0_all.deb
sudo dpkg -i ~/Downloads/Bisq-64bit-1.10.0.deb
sudo apt --fix-broken install