-
Notifications
You must be signed in to change notification settings - Fork 4
/
install.sh
38 lines (32 loc) · 1.03 KB
/
install.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
#!/bin/bash
SEP="-----------------------------------------------------"
echo $SEP
echo "Version de Python trouvée : "
python3 -V
echo $SEP
echo "Création d'un environnement virtuel python pour soapy..."
python3 -m venv venv
echo "...terminé."
echo $SEP
echo "Utilisation de l'environnement virtuel créé..."
source venv/bin/activate
echo "...terminé."
echo $SEP
echo "Mise à jour de pip et installation des dépendances..."
pip --quiet install --upgrade pip
pip --quiet install -r requirements.txt
echo "...terminé."
echo $SEP
echo "Mise à jour du fichier collection.py (zeep/xsd/types/collection.py)..."
find ./venv -name collection.py
NBR_RESULTS=$(find ./venv -name collection.py | wc -l)
if [ $NBR_RESULTS != '1' ]; then
echo "Impossible de trouver collection.py. Avez-vous bien installé la librairie Python Zeep ?"
exit 1
fi
PATH_TO_ZEEP_COLLECTION=$(find . -name collection.py)
yes | cp -rf ./upgrade/collection_new.py $PATH_TO_ZEEP_COLLECTION
echo "...terminé."
echo $SEP
echo "L'installation de soapy est terminée !"
exit 0