sae24_hack/install.sh
2024-06-11 17:57:22 -03:00

10 lines
441 B
Bash
Executable File

#!/bin/bash
echo -e "********************************************\n** Installation de l'environnement python **\n********************************************"
python3.11 -m venv sae24_env
source sae24_env/bin/activate
pip install -r requirements.txt
python -m ipykernel install --user --name=sae24_env
echo -e "Attention Ne pas oublier de sélectionner l'environnement virtuel sae24_env au niveau du Kernel !"
jupyter notebook --allow-root