Add Pygments for Python
This commit is contained in:
parent
dfe9fa4635
commit
f8ed09c8dc
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue