Hello, I got stuck in the installation of Jitsi in my digitalocean server, the project when I tried to install jitsi-meet I use the following commands
sudo apt update
sudo apt install jitsi-meet
give me this output Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
jitsi-meet-prosody : Depends: prosody (>= 0.11.7) or
prosody-trunk but it is not installable or
prosody-0.12 but it is not installable or
prosody-0.11 but it is not installable
E: Unable to correct problems, you have held broken packages.
I use the following OS
Distributor ID: Ubuntu
Description: Ubuntu 22.10
Release: 22.10
Codename: kinetic
I try to install directly prosody with sudo apt install prosody and give this error with the package
The following packages have unmet dependencies:
prosody : Depends: libicu70 (>= 70.1-1~) but it is not installable
Recommends: lua-readline but it is not going to be installed
Recommends: lua-unbound but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
As a quick solution you may install it on a Debian 11 Bullseye droplet. In this case you don’t need to add an additional sources.list for prosody. Prosody from the official repo will work.
You probably are missing steps from the quick install guide. For example this one “On Ubuntu systems, Jitsi requires dependencies from Ubuntu’s universe package repository. To ensure this is enabled, run this command:”
To have prosody 0.12… you need this step:
Thank you I was able to install jitsi in Debian 11, the problem I had was that Ubuntu 22 have problem with the dependencies. Thank you much for your help