z33k
z33k

Reputation: 3646

Where's Qt Designer on Linux installation of PySide2 (Qt for Python)?

After installing with pip install PySide2 it's at: site-packages\PySide2\designer.exe on Windows, but I don't see any counterpart on my Ubuntu installation.

Pyside2 page on pypi.org isn't very helpful as Qt for Python Team left Project description page empty.

Does it mean Qt Designer is just not bundled for some reason with the Linux distribution of Qt for Python and one has to look for some PyQt packages to remedy the situation? If that's the case, which ones?

Upvotes: 2

Views: 3520

Answers (1)

z33k
z33k

Reputation: 3646

eyllanesc's comment is the answer. Qt Designer is not bundled with the Linux distribution of Qt for Python that you get by means of pip install PySide2. Using apt remedies situation:

sudo apt install qttools5-dev-tools

Upvotes: 1

Related Questions