Skip to content

Instantly share code, notes, and snippets.

@Anas-jaf
Last active August 5, 2022 21:47
Show Gist options
  • Save Anas-jaf/d0aca8fa247fe4bee1f20dfc5a103fe2 to your computer and use it in GitHub Desktop.
Save Anas-jaf/d0aca8fa247fe4bee1f20dfc5a103fe2 to your computer and use it in GitHub Desktop.
install qt4

install sip

wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz
tar xzvf-sip-4.19.13.tar.gz 
cd sip-4.19.13.tar.gz 
python configure.py -b $HOME/local/bin -d $HOME/local/lib/python2.7/site-packages -e $HOME/local/include
make 
make install

install qt4

wget https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.12.3/PyQt4_gpl_x11-4.12.3.tar.gz
tar xzvf-PyQt4_gpl_x11-4.12.3.tar.gz
cd PyQt4_gpl_x11-4.12.3 
python configure.py --sip-module PyQt4.sip --no-dist-info --no-tools -b $HOME/local/bin -d $HOME/local/lib/python2.7/site-packages 
make 
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment