I'm running Ubuntu 22.04:
$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 22.04.3 LTSRelease: 22.04Codename: jammy
And I need to install libusb-dev
. I do this:
sudo apt install libusb-1.0-0-dev
And obtain this error:
Some packages could not be installed. [...]The following packages have unmet dependencies. libusb-1.0-0-dev : Depends: libusb-1.0-0 (= 2:1.0.25-1ubuntu1) but 2:1.0.25-1ubuntu2 is to be installed Recommends: libusb-1.0-doc but it is not going to be installedE: Unable to correct problems, you have held broken packages.
It seems it's telling that libusb-1.0-0-dev
depends on libusb-1.0-0
, but I have it installed already:
$sudo apt install libusb-1.0-0Reading package lists... DoneBuilding dependency tree... DoneReading state information... Donelibusb-1.0-0 is already the newest version (2:1.0.25-1ubuntu2).0 to upgrade, 0 to newly install, 0 to remove and 193 not to upgrade.
Could I get some help, please?