From d2e2e268f80300af56e734e93be3e6bea7c8368d Mon Sep 17 00:00:00 2001 From: guillaume Date: Mon, 17 Jul 2023 15:49:05 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'script.sh'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajout de l'installation du paquet PIP et du module tabulate --- script.sh | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/script.sh b/script.sh index b3e7422..9e50d0b 100644 --- a/script.sh +++ b/script.sh @@ -7,16 +7,17 @@ NC='\033[0m' # No Color # Packages list packages=( - "zsh" # Better than bash - "micro" # Better than nano - "exa" # Better than ls - "bat" # Better than cat - "btop" # Betther than top - "ncdu" # Better than du -h - "duf" # Better than df -h - "neofetch" # Because it's cool - "git" # Because git - "fuck" # Fuck error + "zsh" # Better than bash + "micro" # Better than nano + "exa" # Better than ls + "bat" # Better than cat + "btop" # Betther than top + "ncdu" # Better than du -h + "duf" # Better than df -h + "neofetch" # Because it's cool + "git" # Because git + "fuck" # Fuck error + "python3-pip" # PIP ) # Packages installation @@ -33,6 +34,10 @@ for package in "${packages[@]}"; do fi done +# Installation module tabulate +echo "Installation module tabulate via pip" +pip install tabulate + # Git Installation mkdir ~/.zsh if [ ! -d ~/.zsh ]; then