uninstall pyzmq

0

Estou tentando instalar o notebook jupyter no Ubuntu 18.04 usando o pip3. No entanto, me deparo com esse erro:

" Cannot uninstall 'pyzmq'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall."

Eu tentei o comando abaixo, mas ainda não obtive sucesso.

pip3 uninstall pyzmq

Qualquer ajuda seria apreciada.

    
por Aren Mark Boghozian 22.05.2018 / 10:27

3 respostas

1

Isso provavelmente tem a ver com a versão do pip que você está usando.

Você pode usar o pip 9 em vez disso:

sudo -H pip3 install pip==9.0.3

E depois desinstale / instale o que você precisa:

sudo -H pip3 uninstall pyzmq
    
por Daniel 07.06.2018 / 13:01
0

O que fiz para resolver um problema semelhante é que atualizei o pyzmq primeiro ignorando as instalações anteriores, usando o comando abaixo:

pip3 install --ignore-installed pyzmq

Em seguida, instalei o bloco de notas jupyter com o seguinte comando:

pip3 install jupyter

    
por Meysam Sadeghi 04.10.2018 / 12:01
0

Eu tive que rodar isso (python 2.7):

sudo apt-get remove python-zmq 
    
por Milean 16.10.2018 / 14:02