Jeff
Jeff

Reputation: 7210

install PyQt4 on mac error

I'm getting this error on the make install part of the installation process.

ld: library not found for -lqpycore

Not sure what this means. Any ideas?

Upvotes: 0

Views: 922

Answers (3)

Henk van der Laak
Henk van der Laak

Reputation: 299

For me, first make then make install worked as well.

Upvotes: 1

James Riendeau
James Riendeau

Reputation: 91

I got this same error trying to install pyqt5 on Mac OS 10.8. The solution for me was to cd into the qpy directory (under the PyQt-gpl install directory) and make. Once finished cd .., and sudo make install again.

Upvotes: 9

Cynical
Cynical

Reputation: 9558

It means that the library qpycore is not installed, maybe you have missed some dependency?

Upvotes: 1

Related Questions