Created
February 3, 2019 20:35
-
-
Save tayyebi/2d6412dffbaa7d7b931687444b0d4f4e to your computer and use it in GitHub Desktop.
Install Qt Designer and Editor Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pyuic5 -x file.ui -o output.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To import Qt in Python | |
pip3 install --user pyqt5 | |
sudo apt-get install python3-pyqt5 | |
sudo apt-get install pyqt5-dev-tools | |
sudo apt-get install qttools5-dev-tools | |
# To use Qt designer | |
sudo apt-get install qttools5-dev-tools | |
# .ui to .py convert | |
sudo apt install pyqt5-dev-tools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment