Last active
August 23, 2023 06:25
-
-
Save vielhuber/405182da3cf303a658b7b9737a521703 to your computer and use it in GitHub Desktop.
centos install ghostscript in latest version from source #linux
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
# be aware: you cannot uninstall this (make uninstall is not available in this package) | |
cd /opt/ | |
wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs923/ghostscript-9.23.tar.gz | |
tar xvf ghostscript-9.23.tar.gz | |
cd ghostscript-9.23 | |
./configure | |
make | |
make install | |
gs -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment