Como atualizar o pip3 quando o xenial diz que já está instalado, mas o jupyter diz que não é?

1

Contexto: Xenial, pip3, jupyter

Estou tentando instalar jupyter , que depende de pip3 . Jupyter diz para instalá-lo, mas apt diz que eu já tenho a versão mais recente instalada.

O que acontece aqui?

bugmagnet@Phenomenon2:~$ pip3 install jupyter
The program 'pip3' is currently not installed. You can install it by typing:
sudo apt install python3-pip

bugmagnet@Phenomenon2:~$ sudo apt install python3-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-pip is already the newest version (8.1.1-2ubuntu0.4).
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.

bugmagnet@Phenomenon2:~$ pip3 install jupyter
The program 'pip3' is currently not installed. You can install it by typing:
sudo apt install python3-pip
    
por bugmagnet 18.12.2016 / 14:02

1 resposta

1

Uau, isso é estranho.

Eu não tenho python3-pip instalado no meu sistema e, quando o instalei, pip3 funcionou.

Talvez você tenha conseguido interromper a instalação de alguma forma. Experimente apt install --reinstall python3-pip .

    
por dja 19.12.2016 / 03:04