-
Notifications
You must be signed in to change notification settings - Fork 2
GUI
Thibault Serti edited this page Jun 20, 2019
·
1 revision
To visualize the GUI, you need to have Qt5 installed.
QT 5
sudo apt install build-essential
sudo apt install qt5-defaultQt5 documentation
sudo apt install qt5-doc
sudo apt install qt5-doc-html qtbase5-doc-html
sudo apt install qtbase5-examplesQt5 for Python
sudo apt install python3-pyqt5 pyqt5-dev-toolsQtCreator To edit the .ui file and bring modifications to the GUI, you will need QtCreator and QtDesigner
sudo apt install qtcreatorTo generate the Python code from the .ui, you have to execute
pyuic5 -x gui.ui -o gui.py
pyrcc5 image.qrc -o image_rc.py