Não é possível instalar o matplotlib no cygwin (questão freetype)

4

Seria muito bom ter o matplotlib no meu ambiente cygwin. Eu tenho o Windows 8 de 64 bits com o cygwin de 64 bits.

Quando eu digito:

pip install matplotlib

Eu recebo a seguinte mensagem de erro:

 * The following required packages can not be built:
 * freetype

Como por apt-cyg eu tenho os seguintes pacotes já instalados:

Searching for installed packages matching freetype: 
cygwin32-freetype2
freetype2-debuginfo
libfreetype-devel
libfreetype-doc
libfreetype6

O que mais precisa? Como instalar o freetype & matplotlib corretamente?

    
por Alexey Petrenko 18.06.2014 / 02:25

2 respostas

9

Eu tive o mesmo problema no Windows 7 de 64 bits; Eu resolvi isso instalando os pacotes Cygwin pkg-config e libX11-devel antes de digitar easy_install matplotlib==1.1.1 (a versão 1.3.1 está tendo erros na minha máquina, daí a 1.1.1).

    
por 23.07.2014 / 14:24
3

Eu também tive o mesmo problema no cygwin Windows 8 de 64 bits. Eu segui o conselho em outra resposta (instale pkg-config e libX11-devel ), mas o pacote que finalmente me permitiu instalar o matplotlib foi libfreetype-devel . Então apenas easy_install matplotlib==1.4.2 .

    
por 24.12.2014 / 17:54