-
Notifications
You must be signed in to change notification settings - Fork 2
/
install_tahoma-gpt_french.sh
109 lines (92 loc) · 3.82 KB
/
install_tahoma-gpt_french.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/bash
# Fonction pour télécharger un fichier depuis une URL
download_file() {
local url=$1
local filename=$2
wget -O "$filename" "$url"
}
# Demander si l'utilisateur souhaite installer venv
read -p "Voulez-vous installer venv? (Oui/Non): " install_venv
# Vérifier la réponse de l'utilisateur
if [[ $install_venv =~ ^(Oui|oui|OUI|Yes|yes|YES|O|o|Y|y)$ ]]; then
python3 -m pip install virtualenv
else
echo "Venv n'a pas été installé."
fi
# Demander l'emplacement du dossier d'installation
echo ""
echo "Entrez le chemin du dossier d'installation :"
read -p "Ou presser Entrée pour installer dans : ~/tahoma-gpt " install_dir
install_dir=${install_dir:-"$HOME/tahoma-gpt"}
# Créer le dossier d'installation et se déplacer dedans
mkdir -p "$install_dir"
cd "$install_dir"
# Télécharger les fichiers depuis GitHub
download_file "https://github.com/pzim-devdata/tahoma/raw/main/requirements_tahoma-gpt.txt" "requirements_tahoma-gpt.txt"
download_file "https://github.com/pzim-devdata/tahoma/raw/main/tahoma-gpt_french.py" "tahoma-gpt_french.py"
download_file "https://github.com/pzim-devdata/tahoma/raw/main/tahoma_chatgpt.sh" "tahoma_chatgpt.sh"
download_file "https://raw.githubusercontent.com/pzim-devdata/tahoma/main/tahoma-gpt.png" "tahoma-chatgpt.png"
chmod +x "tahoma_chatgpt.sh"
chmod +x "tahoma-gpt_french.py"
chmod -x "tahoma-chatgpt.png"
# Installer venv
python3 -m venv env
# Activer l'environnement virtuel
source env/bin/activate
# Demander si l'utilisateur souhaite installer tahoma
echo ''
echo "Faites bien attention qu'il n'y ai pas plusieurs version de tahoma dejà installées sur votre ordinateur."
read -p "Voulez-vous installer tahoma? (Oui/Non): " install_tahoma
# Vérifier la réponse de l'utilisateur
if [[ $install_tahoma =~ ^(Oui|oui|OUI|Yes|yes|YES|O|o)$ ]]; then
# Installer tahoma
python3 -m venv env
source env/bin/activate
python3 -m pip install -U tahoma
# Configurer tahoma
echo ""
tahoma -c
# Obtenir la liste des appareils
echo ""
tahoma -g
sleep 6
fi
# Installer les dépendances
python3 -m venv env
source env/bin/activate
python3 -m pip install -r requirements_tahoma-gpt.txt
# Demander la clé API OpenAI
echo ""
echo "Pour la création de la clé API OpenAI rendez-vous sur le site d'OpenAI : https://platform.openai.com/apps"
read -p "Entrez la clé API OpenAI :" openai_api_key
# Modifier le fichier tahoma-gpt_french.py avec la clé API
sed -i "s|openai.api_key =.*|openai.api_key = '$openai_api_key'|" tahoma-gpt_french.py
# Demande à l'utilisateur s'il souhaite créer un raccourci bureau
read -p "Voulez-vous créer un raccourci bureau pour Tahoma-GPT ? (Oui/Non) " response
response=$(echo "$response" | tr '[:upper:]' '[:lower:]')
if [[ $response == "oui" || $response == "o" || $response == "yes" || $response == "y" ]]; then
desktop_dir=$(xdg-user-dir DESKTOP)
if [ "$desktop_dir" ]; then
sed -i 's/tahoma-gpt.py/tahoma-gpt_french.py/g' tahoma_chatgpt.sh
rm "$desktop_dir/tahoma-gpt.desktop"
echo "[Desktop Entry]
Version=1.0
Type=Application
Name="Tahoma-GPT en français"
Comment=Raccourci pour exécuter Tahoma-GPT
Icon=$(dirname "$(readlink -f "$0")")/tahoma-chatgpt.png
Exec='$(dirname "$(readlink -f "$0")")/tahoma_chatgpt.sh'
Terminal=true" > "$desktop_dir/tahoma-gpt.desktop"
chmod +x "$desktop_dir/tahoma-gpt.desktop"
echo "Le raccourci bureau pour Tahoma-GPT a été créé avec succès et rendu exécutable. Les autres raccourcis ont été supprimés"
echo "Le fichier $install_dir/tahoma_chatgpt.sh a été modifié pour lancer $install_dir/tahoma-gpt_french.py"
else
echo "Je n'ai pas trouvé le dossier Desktop, impossible d'installer le raccourci"
fi
fi
# Exécuter le script tahoma-gpt_french.py
python3 -m venv env
source env/bin/activate
python3 tahoma-gpt_french.py
# Désactiver l'environnement virtuel
deactivate