pense-bête de bruno sanchiz

Accueil > Programmation > python > python en virtuel

python en virtuel

Publié le 11 juillet 2023, dernière mise-à-jour le 3 juin 2024, 3 visites, visites totales.

Pour permettre l’utilisatio nde python dans toutes les situations, il a été décidé de metrte en avant la virtualisation :

https://peps.python.org/pep-0668/

et donc on utilise comme ça :
python3 -m venv /tmp/venv ; source /tmp/venv/bin/activate ; pip install --upgrade pip ; pip3 install matplotlib numpy opencv-python opencv-contrib-python tensorflow

erreurs : Could not build wheels for dlib, erreur apparue pour installer face-recognition

, d’après https://learnopencv.com/install-dlib-on-ubuntu/
installation de face_recognition

sudo apt-get install cmake build-essential libopenblas-dev liblapack-dev pkg-config libx11-dev libatlas-base-dev libgtk-3-dev libboost-python-dev   python3-dev python3-pip virtualenv virtualenvwrapper

source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
mkvirtualenv facecourse-py3 -p python3
workon facecourse-py3

pip install numpy scipy matplotlib scikit-image scikit-learn ipython wheel  numpy scipy matplotlib scikit-image scikit-learn ipython

pip3 install numpy virtualenv virtualenvwrapper
# now install python libraries within this virtual environment
pip install numpy scipy matplotlib scikit-image scikit-learn ipython
# quit virtual environment
deactivate
[bruno sanchiz]