Comment installer la bibliothèque à Python
pip install PackageName
Eg. pip install request
#or
pip3 install PackageName
#if pip doesn't work
python -m pip install PackageName
# or
python -m pip3 install PackageName
Vonor22