I downloaded the .DEB from https://remotedesktop.google.com/access
I get this:
I'm on Kubuntu 22.04 LTS.
I downloaded the .DEB from https://remotedesktop.google.com/access
I get this:
I'm on Kubuntu 22.04 LTS.
As shown in the Status, you can't install the package due to having unmet dependencies, after a quick search I came across this. However, those are for the version 110, while you are trying to install version 111. In order to solve the problem you need to install the missing dependencies, which you may find after running sudo dpkg -i YOUR_DEB_PACKAGE
, after that, try installing those unmet dependencies that are listed using sudo apt install XXX
.
Once you are finished, try installing the package again, either by using the GUI as you did at the beginning or running sudo dpkg -i YOUR_DEB_PACKAGE
.
apt
to install local debs, and apt will automatically satisfy those dependencies (if possible): sudo apt install /path/to/package.deb
Commented
Feb 23, 2023 at 13:20
sudo dpkg -i chrome-remote-desktop_current_amd64.deb
, which produced a bunch of complaints about missing packages. Then I tried to install one of the missing packages with sudo apt install python3-psutil
and got a suggestion to run sudo apt --fix-broken install
, which I did. Then I tried to install with sudo apt install ...deb
, and it said it was already installed. It was! It works!
Commented
Feb 23, 2023 at 20:21
apt install <.DEB file>
, and not with dpkg
or by double-clicking?
Commented
Feb 23, 2023 at 20:24