8 votes

Aucun paquet n'a été trouvé par le glob 'Python-3.7.0'.

J'ai un E: Couldn't find any package by glob 'Python-3.7.0' message d'erreur lors de l'installation de Python 3.7 dans Ubuntu 16.04

ns3@ns3-virtual-machine:~$ sudo apt install Python-3.7.0
Reading package lists... Done
Building dependency tree       
Reading state information... Done 
E: Unable to locate package Python-3.7.0
E: Couldn't find any package by glob 'Python-3.7.0'
E: Couldn't find any package by regex 'Python-3.7.0'

ns3@ns3-virtual-machine:~$ sudo apt install Python-3.7
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package Python-3.7
E: Couldn't find any package by glob 'Python-3.7'
E: Couldn't find any package by regex 'Python-3.7'
ns3@ns3-virtual-machine:~$ sudo apt install python3
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3 is already the newest version (3.5.1-3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
ns3@ns3-virtual-machine:~$ python --version
Python 2.7.12
ns3@ns3-virtual-machine:~$ apt policy python-3.7
N: Unable to locate package python-3.7
N: Couldn't find any package by glob 'python-3.7'
N: Couldn't find any package by regex 'python-3.7
ns3@ns3-virtual-machine:~$

14voto

karel Points 97032

Dans Ubuntu 16.04, ouvrez le terminal et tapez :

sudo add-apt-repository ppa:deadsnakes/ppa   
sudo apt-get update   
sudo apt install python3.7    

Vous pouvez également installer Python3.8 dans Ubuntu 16.04 avec les commandes suivantes :

sudo add-apt-repository ppa:deadsnakes/ppa   
sudo apt-get update   
sudo apt install python3.8  

Pour afficher la version Python 3.7, exécutez la commande suivante :

python3.7 -V

Pour lancer l'interpréteur Python 3.7, exécutez la commande suivante :

python3.7  

Pour quitter l'interpréteur Python 3.x, exécutez la commande suivante :

exit

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X