In this recipe, we will install the PyQt5 Designer tool. We will do this by using Python's pip tool. The steps are very similar to the previous recipe's, where we installed PyQt5.
Installing the PyQt5 Designer tool
Getting ready
You need to have Python's pip tool installed on your computer.
How to do it...
Let's see how we can install the PyQt5 Designer using Python's pip tool. Note that the package includes more than just the Designer tool:
- Open a Windows PowerShell window or Command Prompt.
- Type in the following command:
pip install pyqt5-tools...