I'm new to ubuntu, I entered the following commands
sudo apt-get install python-pyqt and sudo apt-get install qt-designer.
Both the commands executed successfuly but I'm not able to figure out how to launch the qt-designer program.
Asked
Active
Viewed 1e+01k times
5 Answers
11
with sudo apt-get install python-qt4 qt4-designer should work.
You can find it if you search it with apt-cache search qt | grep designer:
libqt4-designer - Qt 4 designer module
libqt4-designer-dbg - Qt 4 designer library debugging symbols
qt4-designer - graphical designer for Qt 4 applications
kdesignerplugin - Integration of KF5 widgets in Qt Designer/Creator
kdesignerplugin-data - Integration of KF5 widgets in Qt Designer/Creator
kgendesignerplugin - Integration of KF5 widgets in Qt Designer/Creator
libopenrpt-dev - graphical SQL report writer, designer and rendering engine (development)
libopenrpt1v5 - graphical SQL report writer, designer and rendering library
libqscintilla2-designer - Qt4 Designer plugin for QScintilla 2
libqscintilla2-designer-dbg - Qt4 Designer plugin for QScintilla 2 (debug)
libqt5designer5 - Qt 5 designer module
libqt5designercomponents5 - Qt 5 Designer components module
libqt5scintilla2-designer - Qt5 Designer plugin for QScintilla 2
libqt5scintilla2-designer-dbg - Qt5 Designer plugin for QScintilla 2 (debug)
libqxt-designer0 - LibQxt extensions to Qt Designer
openrpt - graphical SQL report writer, designer and rendering engine
And search more info about the package with apt-cache show qt4-designer.
blkpws
- 1,242
9
type on your Terminal
designer-qt4
or if /usr/bin isn't included in your PATH:
/usr/bin/designer-qt4
Elder Geek
- 36,752
Slimane MEHARZI
- 191
0
To search for available packages run:
apt-cache search qt*designer
Which will output:
libqt4-designer - Qt 4 designer module
libqt5designer5 - Qt 5 designer module
python-pyqt5 - Python 2 bindings for Qt5
python3-pyqt5 - Python 3 bindings for Qt5
Then install the packages you need:
sudo apt install libqt5designer5 python3-pyqt5
singrium
- 7,320
0
Many things changed to use the latest release 6 of pyQt. This link shows how to install the latest version of PyQt6 developer, and how to get it to show as one of your applications
LarryM
- 587