1 Answers1

3

You'll want to first list all current diversions for the libGL.so.1 file like this:

dpkg-divert --list | grep libGL.so.1

If you have a record, then you can rename the offending file:

sudo dpkg-divert --remove /usr/lib/x86_64-linux-gnu/libGL.so.1

From here, you can attempt the installation one more time.

matigo
  • 22,138
  • 7
  • 45
  • 75