nenhum módulo denominado packaging.version

0

Eu instalei o Ubuntu 14.04 ontem e instalei o pip pelo comando
sudo apt-get install python-pip ,
mais tarde, quando estou tentando instalar outros pacotes através do pip ou tentando verificar a versão do pip, estou recebendo o seguinte erro.

Traceback (most recent call last):  
  File "/usr/bin/pip", line 5, in module  
    from pkg_resources import load_entry_point  
  File "/home/abhi/.local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 70, in module  
    import packaging.version  
ImportError: No module named packaging.version

Eu tentei instalar o pip3, mas isso também dá o mesmo erro.

    
por Abhilash Bhat 03.03.2017 / 10:29

2 respostas

1

Eu resolvi o problema acima instalando o pip com o seguinte comando

python -m pip install -U pip

Agora pip está funcionando bem ..

    
por Abhilash Bhat 07.03.2017 / 11:33
0

O que funcionou para mim foi reinstalar o pip usando o script get-pip.py , conforme descrito aqui :

sudo apt-get purge python-pip python-setuptools
curl -O https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
    
por PlasmaBinturong 23.03.2017 / 23:46

Tags