venv run pip3 activate python linux python-3.x mint python-venv

run - virtualenv python 3 ubuntu



Instale el módulo python3-venv en linux mint (3)

Pude pasar a la versión 17.3 de 64 bits de Linux mint desde mi mint 16 de Linux. Esto fue una migración muy esperada.

Después de pasar a Linux Mint 17.3, no puedo instalar el módulo python3-venv, que se dice que reemplaza a virtualenv en python 3.x. En mi linux mint 16 tuve acceso a la herramienta pyvenv-3.4. No sé cuando instalé ese módulo en Linux mint 16.

¿Alguien enfrentó este problema?

python -m venv test 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. izero@Ganesha ~/devel $ sudo apt-get install python3-venv [sudo] password for izero: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package python3-venv


Intenta ejecutar este comando:

sudo apt-get install python3.4-venv

Entonces usa esto:

python3 -m venv test

el nombre del paquete es python3.4-venv y no python3-venv .


Para Python 3.6 descubrí que era un problema de configuración regional, ejecutando esto:

export LC_ALL="en_US.UTF-8" export LC_CTYPE="en_US.UTF-8" sudo dpkg-reconfigure locales

Parece resolver el problema.

Fuente de this respuesta


Uso python 3.6, y lo siguiente me sirvió de truco: $ sudo apt-get install python3.6-venv

(El problema fue que apt-get install python3-venv sería virtualenv para 3.5)