narenarya

PyQT4 install steps

Jan 23rd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Installing QT4 and PyQT4 on Ubuntu 14.04 with Python3
  2.  
  3. Shortest way
  4. ===========================
  5. $ sudo apt-get install python3.4-dev build-essential
  6. $ sudo apt-get install python3-pyqt4
  7.  
  8.  
  9. Build from source
  10. ============================
  11. $ sudo apt-get install python3.4-dev build-essential
  12. $ sudo apt-get install qt4-dev-tools
  13. $ sudo apt-get install libqt4-dev libqt4-core libqt4-gui
  14.  
  15. //Download sip package
  16. $ python3.4 configure.py
  17. $ sudo make
  18. $ sudo make install
  19.  
  20. // Now naviagte to PyQt4 4 downloaded and extracted TAR
  21. http://sourceforge.net/projects/pyqt/?source=typ_redirect
  22.  
  23. $ python3.4 configure.py
  24. $ sudo make
  25. $ sudo make install
Add Comment
Please, Sign In to add comment