10 lines
441 B
Bash
Executable File
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
|
|
|