Add Pygments for Python

This commit is contained in:
Mylloon 2022-01-07 23:31:13 +01:00
parent dfe9fa4635
commit f8ed09c8dc
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 4 additions and 4 deletions

View file

@ -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
- 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))
```bash
sudo apt update && sudo apt install python3-virtualenv python3-tk -y
sudo apt install python3-virtualenv python3-tk python3-pygments -y
```
- Installe Rust

View file

@ -28,8 +28,8 @@ then
bash installJava.sh
# Install Python useful tools
sudo apt install python3-virtualenv python3-tk -y
echo -e "\nPython's vEnv and Tkinter installed! 🎉"
sudo apt install python3-virtualenv python3-tk python3-pygments -y
echo -e "\nPython's vEnv, Pygments and Tkinter installed! 🎉"
# Install Rust
bash installRust.sh