1

When I ran apt-get, the system said that dpkg is broken, use sudo dpkg --configure -a to recover, but when I ran sudo dpkg --configure -a, it showed the following error message:

dpkg: error: liboil0.3:amd64 0.3.16-1ubuntu2 (Multi-Arch: no) is not co-installable with liboil0.3 which has multiple installed instances

How do I fix this? Please help.

karel
  • 122,292
  • 133
  • 301
  • 332
Yu Jiaao
  • 213

1 Answers1

1

What was the reason behind this error means,you are trying to install 64 bit version of liboil0.3,but your system has already installed a 32-bit version of liboil0.3.Run the below command in terminal to fix this problem.

sudo dpkg -r liboil0.3:i386
Avinash Raj
  • 80,446