J'ai mis à jour ubuntu 14.04 vers ubuntu 16.04 il y a quelques jours. Lorsque j'essaye de créer un environnement virtuel en utilisant
pyvenv .venv
ou
python3 -m venv .venv
Il y a une erreur:
The virtual environment was not created successfully because ensurepip is not
available. On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.
apt-get install python3-venv
You may need to use sudo with that command. After installing the python3-venv
package, recreate your virtual environment.
Failing command: ['/usr/bin/python3.5', '-Im', 'ensurepip', '--upgrade', '--default-pip']
J'ai essayé d'exécuter les deux
sudo apt-get install python3-venv
et
sudo apt-get install python3.5-venv
mais cela n'a pas résolu mon problème.