Last active
May 14, 2022 23:46
-
-
Save byk0t/3cdd47db3ef9123ec15ae5d6f005e63c to your computer and use it in GitHub Desktop.
libpcre3 error during libgtk-4-dev installation on ubuntu 22.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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