Skip to content

Instantly share code, notes, and snippets.

@byk0t
Last active May 14, 2022 23:46
Show Gist options
  • Save byk0t/3cdd47db3ef9123ec15ae5d6f005e63c to your computer and use it in GitHub Desktop.
Save byk0t/3cdd47db3ef9123ec15ae5d6f005e63c to your computer and use it in GitHub Desktop.
libpcre3 error during libgtk-4-dev installation on ubuntu 22.04
# libgtk4 needed libpcre3 2:8.39-13build5, but on my ubuntu was installed 2:8.43-1+ubuntu19.10.1+deb.sury.org+1
# so, in my case the issue was fixed by downgrading libpcre3 to a needed version
# here is an algorithm
# Downgrade libpcre3
sudo apt-get install libpcre3=2:8.39-13build5
# Install libgtk-4-dev
sudo apt-get install libgtk-4-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment