From ad92bd35389ac82c10ea0ba26adb34f5f16d252d Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 3 Feb 2022 18:40:31 +0100 Subject: [PATCH] Relocate Pygments installation in the latex installation --- README.md | 6 +++--- installGlobalScript.sh | 4 ++-- installLatex.sh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d7fe433..afac065 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installParsec.sh -O tmp.sh && bash tmp.sh; rm tmp.sh ``` -- Installe Latex +- Installe Latex et [Pygments](http://tug.ctan.org/macros/latex/contrib/minted/minted.pdf) ```bash wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installLatex.sh -O tmp.sh && bash tmp.sh; rm tmp.sh ``` @@ -138,9 +138,9 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installClipboardHistory.sh -O tmp.sh && bash tmp.sh; rm tmp.sh ``` -- Installe des trucs utile pour Python ([venv](https://docs.python.org/fr/3/library/venv.html), [Tkinter](https://docs.python.org/fr/3/library/tkinter.html) et [Pygments](http://tug.ctan.org/macros/latex/contrib/minted/minted.pdf)) +- Installe des trucs utile pour Python ([venv](https://docs.python.org/fr/3/library/venv.html) et [Tkinter](https://docs.python.org/fr/3/library/tkinter.html)) ```bash - sudo apt install python3-virtualenv python3-tk python3-pygments -y + sudo apt install python3-virtualenv python3-tk -y ``` - Installe Rust diff --git a/installGlobalScript.sh b/installGlobalScript.sh index 6a641d0..51d82a6 100644 --- a/installGlobalScript.sh +++ b/installGlobalScript.sh @@ -28,8 +28,8 @@ then bash installJava.sh # Install Python useful tools - sudo apt install python3-virtualenv python3-tk python3-pygments -y - echo -e "\nPython's vEnv, Pygments and Tkinter installed! 🎉" + sudo apt install python3-virtualenv python3-tk -y + echo -e "\nPython's vEnv and Tkinter installed! 🎉" # Install Rust bash installRust.sh diff --git a/installLatex.sh b/installLatex.sh index 182e212..764936c 100644 --- a/installLatex.sh +++ b/installLatex.sh @@ -1,7 +1,7 @@ # Install Latex sudo apt update -sudo apt install texlive-full -y -echo -e "\nLatex installed!" +sudo apt install texlive-full python3-pygments -y +echo -e "\nLatex installed, along with Pygments for minted package!" if grep "Ubuntu" /proc/version > /dev/null; then