I've been trying install LOIC on my Parrot OS VM which running using UTM on my M3 Mac. When I try to install it I get the following:

What's going wrong?
I've been trying install LOIC on my Parrot OS VM which running using UTM on my M3 Mac. When I try to install it I get the following:

What's going wrong?
sudo sh -c "apt-get update;apt-get dist-upgrade;apt-get autoremove;apt-get autoclean"
i386 architecture
sudo dpkg --add-architecture i386 && sudo apt update
sudo apt install wine32 -t lory-backports
wine —-version && wine
Your (or more accurately, ParrotOS') apt policies are causing the problem.
For example, wine32 is requesting (transitively) libdw1:i386 @ >=0.126 but your apt policies for that package explicitly forbid you from installing that installation target.
To view current apt policies which apply to a particular package (with architecture either amd64 or i386):
apt policy PACKAGE:{amd64,i386}
e.g.
apt policy libdw1:{amd64,i386}
This will likely reveal that either libdw1, or one of its dependencies, has already been installed from parrot-backports, so you need to install wine32 from parrot-backports too (see below).
Clean up your apt package installations:
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get autoremove
sudo apt-get autoclean
Ensure i386 architecture is enabled:
sudo dpkg --add-architecture i386
Fix-broken install (for good measure):
sudo apt-get update
sudo apt-get --fix-broken install
Install wine from parrot-backports:
sudo apt-get install -t parrot-backports wine32