I am running Debian 12 bookworm on WSL.
I need multipass, which does not have a Debian package, but the multipass github README says to install it in linux with snap.
I attempted to install snapd with sudo apt-get install snapd. This installs a snap binary, but when I try to install multipass, I get an error:
$ sudo snap install multipass
error: cannot communicate with server:
Post "http://localhost/v2/snaps/multipass": dial unix /run/snapd.socket:
connect: no such file or directory
$
It looks like there is some snapd daemon listener that is not open on TCP port 80 (http), but I can't find how to start it.
$ sudo service snap start
snap: unrecognized service
$
$ sudo service snapd start
snapd: unrecognized service
$
How do I snap install multipass on Debian 12 bookworm (under WSL)?