I tried to install PyQt5 on Ubutun but during instillation it gives error;
install -m 644 -p /home/hrn/Applications/PyQt-gpl-5.4/__init__.py /usr/lib/python3.4/site-packages/PyQt5/
cp -f -R home/hrn/Applications/PyQt-gpl-5.4/pyuic/uic /usr/lib/python3.4/site-packages/PyQt5/
install -m 755 -p /home/hrn/Applications/PyQt-gpl-5.4/pyuic5 /usr/bin/
strip /usr/bin/pyuic5
strip:/usr/bin/pyuic5: File format not recognized
Makefile:1988: recipe for target 'install_pyuic5' failed
make: [install_pyuic5] Error 1 (ignored)
PYTHONPATH is showing correct path for PyQt5 but if I try to import module it gives error
hrn@hrn-nix:~/Applications/PyQt-gpl-5.4$ python3
Python 3.4.2 (default, Oct 8 2014, 13:08:17)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from PyQt5 import QtCore
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'PyQt5'
>>>
Whatever I try, I could not solve. What am i missing?