Problema na instalação do pip no Ubuntu 16.04⠀

0

Problema na instalação do pip no Ubuntu 16.04. Ele instalou corretamente, eu acho, mas quando eu verifiquei através de pip -V , em seguida, mostra este erro:

anshul@ANSHUL:~$ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  python-pip
0 upgraded, 1 newly installed, 0 to remove and 15 not upgraded.
Need to get 0 B/144 kB of archives.
After this operation, 635 kB of additional disk space will be used.
Selecting previously unselected package python-pip.
(Reading database ... 282702 files and directories currently installed.)
Preparing to unpack .../python-pip_8.1.1-2ubuntu0.4_all.deb ...
Unpacking python-pip (8.1.1-2ubuntu0.4) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up python-pip (8.1.1-2ubuntu0.4) ...
anshul@ANSHUL:~$ pip -V
Traceback (most recent call last):
  File "/usr/bin/pip", line 9, in <module>
    from pip import main
ImportError: cannot import name main
    
por Anshul Goyal 02.06.2018 / 06:14

1 resposta

0

Tente remover e instalar novamente o pip. Eu posso ver que os arquivos não baixados do repositório está sendo instalado usando o cache do temp que já foi baixado. Eu estou sugerindo para fazer uma instalação limpa que possa ajudar. primeiro purgar pip e fazer um autoclean e autoremove no apt e tente instalar novamente.

    
por Ghostranger 02.06.2018 / 08:22