J'ai installé python3.8 sur Python 19.10 :
sudo apt install python3.8
Je souhaite maintenant installer pip pour Python 3.8
python3.8 -m pip install pip
Requirement already satisfied: pip in /usr/lib/python3/dist-packages (18.1)
Mais le pip 3 est 3.7
pip3 -V
pip 18.1 from /usr/lib/python3/dist-packages/pip (python 3.7)
De sorte que, par exemple :
pip3 install pyinotify
Requirement already satisfied: pyinotify in ./.local/lib/python3.7/site-packages (0.9.6)
La tentative d'importer pyinotify dans un script de python3.8 génère une erreur de type ModuleNotFound
erreur