Não foi possível instalar o python3.5-pip

0

Estou tentando instalar o pip sobre python3.5 e meu Ubuntu 16.04 não quer executá-lo. Estou executando o comando sudo apt-get install python3.5-pip e depois recebo resultado como:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package python3.5-pip
E: Couldn't find any package by glob 'python3.5-pip'
E: Couldn't find any package by regex 'python3.5-pip'
    
por Taras 30.05.2017 / 10:55

1 resposta

4

De acordo com a resposta no tópico abaixo, pip já deve estar instalado enquanto você estiver usando o Python 3.4 +

link

Caso você não o tenha instalado, tente executar o comando abaixo

sudo apt-get install python3-pip
    
por gongomgra 30.05.2017 / 11:02