Não é possível instalar python3-venv (dependências não atendidas)

1

Eu tento instalar o pacote python3-venv com o apt-get seguindo o comando:

sudo apt-get install python3-venv

Mas recebo alguns erros:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 python3-venv : Depends: python3.5-venv (>= 3.5.1-2~) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu também tento fazer este comando:

sudo apt-get update
sudo apt-get upgrade

Mas não está funcionando, então eu tento instalar python3-venv pelo aptitude end eu também recebo este erro. Alguém poderia me ajudar com isso? Becouse eu quero usar venv, mas eu não tenho esse pacote instalado ainda.

    
por Vladyslav 30.07.2017 / 07:37

3 respostas

1

tente isto:

sudo apt-get install virtualenv

ele irá configurar o python3-virtualenv

    
por Gahan 30.07.2017 / 07:57
0

Tente:

sudo aptitude install <packagename>

Pode não resolver o problema, mas pode dar-lhe mais resultados explicados sobre o problema e recomendações para corrigi-lo. Você também pode tentar com a opção -f , o que significa:

Tente consertar as dependências de pacotes quebrados, mesmo que isso signifique ignorar as ações solicitadas na linha de comando ( man page).

    
por Ardit 26.09.2017 / 20:56
0

Eu posso estar errado, mas venv deveria estar na distribuição padrão do Python, tente verificá-lo executando

 python3 -m venv 

Se falhar, você precisa especificar o subversion do Python. Se você estiver no Python 3.6, tente executar

 sudo apt-get install python3.6-venv  

Se você está no Ubuntu 16.04, então por padrão você deve ter o Python 3.5. Executar

 sudo apt-get install python3.5-venv   
    
por igrinis 27.09.2017 / 08:12