Python3-venv não instalado ubuntu 14.04

12

Nova instalação do gnome do Ubuntu 14.04, seguida por dist-upgrade

uma das primeiras coisas que tentei fazer foi criar um ambiente virtual para python

python3 -m venv flask

me deu

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.

que é estranho porque eu pensei que venv foi instalado por padrão, mas de qualquer maneira

sudo apt-get install python3-venv

me dá

E: Unable to locate package python3-venv

estou faltando alguma coisa? algo está errado com a minha instalação python? Eu tentei google se há um repo ou algo que eu preciso, mas não consigo encontrar um.

    
por user3504732 21.04.2016 / 23:17

1 resposta

10

Faça:

sudo apt-get install python3.4-venv

e depois você pode fazer isso facilmente:

python3 -m venv flask

fonte

    
por Breeze 29.11.2016 / 08:14

Tags