You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was not able to install obc_3.3.0_amd64.deb on fresh Ubuntu 20.04,
because OBC depends on libgdk-pixbuf-2.0-0, but Ubuntu 20.04 provides only libgdk-pixbuf2.0-0 (without one hyphen).
How to fix it
We need to create the deb package with fixed dependencies.
Remove the broken install of OBC
sudo apt install -f
cd to the directory with obc_3.3.0_amd64.deb
Unpack the obc_3.3.0_amd64.deb
dpkg-deb -R obc_3.3.0_amd64.deb obc-repack
Change libgdk-pixbuf-2.0-0 to libgdk-pixbuf2.0-0 in the file obc-repack/DEBIAN/control
Create the deb package with fix
dpkg-deb -b obc-repack
Install the fixed package
sudo dpkg -i obc-repack.deb
Install the dependencies
sudo apt install -f
The text was updated successfully, but these errors were encountered:
I was not able to install
obc_3.3.0_amd64.deb
on fresh Ubuntu 20.04,because OBC depends on
libgdk-pixbuf-2.0-0
, but Ubuntu 20.04 provides onlylibgdk-pixbuf2.0-0
(without one hyphen).How to fix it
We need to create the deb package with fixed dependencies.
Remove the broken install of OBC
cd
to the directory withobc_3.3.0_amd64.deb
Unpack the
obc_3.3.0_amd64.deb
Change
libgdk-pixbuf-2.0-0
tolibgdk-pixbuf2.0-0
in the fileobc-repack/DEBIAN/control
Create the deb package with fix
Install the fixed package
Install the dependencies
The text was updated successfully, but these errors were encountered: