1. Home
  2. Langages
  3. Comment installer GhostScript

Comment installer GhostScript

Cet article explique comment installer GhostScript en tant qu’usager de N0C.

GhostScript sert à convertir les fichiers jpg et pdf. Plusieurs webmestres WordPress ont besoin de l’utiliser.

Marche à suivre

Étape 1 — Connexion en SSH

Comme le reste des manipulations sera à faire en SSH, veuillez consulter l’article Comment créer une clé SSH et se connecter à distance à un compte.

Étape 2 — Installation

Voici les commandes terminal à faire :

###téléchargement:###

wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs950/ghostscript-9.50.tar.gz

##décompression:##
tar -xvf ghostscript-9.50.tar.gz

## déplacer dans le répertoire:  ### 
cd ghostscript-9.50


##Configuration de Ghostscript pour le compte local:##

./configure --prefix=$HOME/ghostscript


##Compilation et installation :##

make
make install

##Mise à jour du PATH et des bibliothèques :##

export PATH=$HOME/ghostscript/bin:$PATH
export LD_LIBRARY_PATH=$HOME/ghostscript/lib:$LD_LIBRARY_PATH
Updated on septembre 18, 2024

Related Articles