Relocate Pygments installation in the latex installation
This commit is contained in:
parent
29f51f1b7e
commit
ad92bd3538
3 changed files with 7 additions and 7 deletions
|
@ -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
|
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
|
```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
|
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
|
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
|
```bash
|
||||||
sudo apt install python3-virtualenv python3-tk python3-pygments -y
|
sudo apt install python3-virtualenv python3-tk -y
|
||||||
```
|
```
|
||||||
|
|
||||||
- Installe Rust
|
- Installe Rust
|
||||||
|
|
|
@ -28,8 +28,8 @@ then
|
||||||
bash installJava.sh
|
bash installJava.sh
|
||||||
|
|
||||||
# Install Python useful tools
|
# Install Python useful tools
|
||||||
sudo apt install python3-virtualenv python3-tk python3-pygments -y
|
sudo apt install python3-virtualenv python3-tk -y
|
||||||
echo -e "\nPython's vEnv, Pygments and Tkinter installed! 🎉"
|
echo -e "\nPython's vEnv and Tkinter installed! 🎉"
|
||||||
|
|
||||||
# Install Rust
|
# Install Rust
|
||||||
bash installRust.sh
|
bash installRust.sh
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Install Latex
|
# Install Latex
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install texlive-full -y
|
sudo apt install texlive-full python3-pygments -y
|
||||||
echo -e "\nLatex installed!"
|
echo -e "\nLatex installed, along with Pygments for minted package!"
|
||||||
|
|
||||||
if grep "Ubuntu" /proc/version > /dev/null;
|
if grep "Ubuntu" /proc/version > /dev/null;
|
||||||
then
|
then
|
||||||
|
|
Reference in a new issue