红联Linux门户
Linux帮助

Ubuntu系统安装ghostscript

发布时间:2017-05-09 15:28:46来源:linux网站作者:Seis_juch
ghostscript(以下简称gs)是Ubuntu系统下查看GMT生成的ps、eps格式图片文件的软件,利用源码安装的方式介绍如下:
 
首先,要在Github上下载gs最新的源码,网站为:https://github.com/ArtifexSoftware/ghostpdl-downloads/releases;
 
下载好源码(本人下载的是ghostscript-9.19.tar.gz:https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs919/ghostscript-9.19.tar.gz)之后,移动到/usr/src目录下;
cd /usr/src
sudo tar -xzvf ghostscript-9.19.tar.gz
tar ghostscript-9.19
./configure -- prefix/usr
mkdir obj
mkdir bin
make all
sudo make install
 
安装完成!
 
本文永久更新地址:http://www.linuxdiyf.com/linux/30650.html