Não é possível instalar o python-httplib2 no Centos 6?

0

Por alguma razão meu Centos 6 (rodando em uma caixa Vagrant) não encontrará nenhum pacote httplib2 , enquanto definitivamente parece que existe .

vagrant@localhost ~ $ yum search httplib
Loaded plugins: fastestmirror, security
Determining fastest mirrors
 * base: be.mirror.guru
 * extras: be.mirror.guru
 * updates: be.mirror.guru
Warning: No matches found for: httplib
No Matches found

vagrant@localhost ~ $ sudo yum install python-httplib2
Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: be.mirror.guru
 * extras: be.mirror.guru
 * updates: be.mirror.guru
No package python-httplib2 available.
Error: Nothing to do

Outros pacotes (git por exemplo) podem ser encontrados sem qualquer problema. O que estou perdendo?

    
por Anto 25.01.2018 / 17:03

1 resposta

1

Não sei se foi o jeito certo de proceder, mas resolvi meu problema instalando repositório EPEL (Extra Packages for Enterprise Linux) :

$ sudo yum install epel-release

The EPEL repository is managed by the EPEL group, which is a Special Interest Group within the Fedora Project. The ‘EPEL’ part is an abbreviation that stands for Extra Packages for Enterprise Linux. The EPEL group creates, maintains and manages a high quality set of additional packages. These packages may be software not included in the core repository, or sometimes updates which haven’t been provided yet.
Source

E o pacote httplib2 está disponível:

$ sudo yum -y install python-pip
    
por 25.01.2018 / 17:19

Tags