Relocate Pygments installation in the latex installation

This commit is contained in:
Mylloon 2022-02-03 18:40:31 +01:00
parent 29f51f1b7e
commit ad92bd3538
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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