Skip to content

Instantly share code, notes, and snippets.

View SWHL's full-sized avatar
❤️
Focusing

SWHL

❤️
Focusing
  • China
  • 20:15 (UTC +08:00)
View GitHub Profile
@vielhuber
vielhuber / bash.sh
Last active August 23, 2023 06:25
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