13 lines
405 B
Markdown
13 lines
405 B
Markdown
### Updaten vom Ghostscript (je nach Version anpassen)
|
|
|
|
```bash
|
|
sudo apt update
|
|
sudo apt install build-essential libjpeg-dev libpng-dev libtiff-dev zlib1g-dev libx11-dev
|
|
wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10040/ghostscript-10.04.0.tar.gz
|
|
tar -xvzf ghostscript-10.*
|
|
cd ghostscript-10.04.0
|
|
./configure --prefix=/usr --bindir=/bin
|
|
make
|
|
sudo make install
|
|
reboot
|
|
``` |