Table of Contents

Memo

Update all package

pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -

Create venv

python3 -m venv envDeTest
source envDeTest/bin/activate
//install des paquets de base
python3 -m pip install requests
/home/vlp/test/bin/python3 -m pip install --upgrade pip

deactivate

U