Initialisation du PATH pour TeX Live

Before starting to build TeX Live, set up your PATH so that the system can properly find the files. If you set up your login scripts as recommended in Les fichiers de démarrage du shell Bash, update the needed paths by creating the texlive.sh script. The programs are always installed in an <ARCH>-linux subdirectory and on 32-bit x86 this is always i386-linux. For x86_64 and i?86 we can generate this as $TEXARCH:

[Note]

Note

If upgrading from a previous year's version, you should manually edit texlive.sh to ensure that the version for the year you wish to use is the only TeX present (some people need to keep multiple years available to ensure there are no regressions in their documents).

Now, create the texlive.sh script as the root user:

TEXARCH=$(uname -m | sed -e 's/i.86/i386/' -e 's/$/-linux/')

cat > /etc/profile.d/texlive.sh << EOF
# Begin texlive setup
TEXLIVE_PREFIX=/opt/texlive/2022
export TEXLIVE_PREFIX

pathappend \$TEXLIVE_PREFIX/texmf-dist/doc/man  MANPATH
pathappend \$TEXLIVE_PREFIX/texmf-dist/doc/info INFOPATH
pathappend \$TEXLIVE_PREFIX/bin/$TEXARCH

# End texlive setup
EOF

unset TEXARCH
[Note]

Note

Les chemin MANPATH et INFOPATH standards sont spécifiés ci-dessus pour s'assurer qu'ils sont inclus. S'ils sont déjà définis dans la procédure du script de démarrage, la fonction pathappend s'assurera de supprimer les doublons, donc les inclure ici ne cause aucun problème.

[Note]

Note

The backslashes before the dollar signs in the script above are to facilitate a copy/paste operation. The backslashes should not appear in the actual script.

Les nouveaux chemins peuvent être activés immédiatement en lançant source /etc/profile.

Vous pouvez maintenant continuer soit par install-tl-unx pour une installation binaire de texlive, ou par texlive-20220321 pour commencer une installation depuis les sources.

Last updated on