Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active August 23, 2023 06:25
Show Gist options
  • Save vielhuber/405182da3cf303a658b7b9737a521703 to your computer and use it in GitHub Desktop.
Save vielhuber/405182da3cf303a658b7b9737a521703 to your computer and use it in GitHub Desktop.
centos install ghostscript in latest version from source #linux
# 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