After comparing with some python ui frameworks, we select PyQT to develop our ui application. To know which python ui framework is best, you can read this tutorial.
Python GUI Programming Frameworks, Which is Best for Developers? – Python Tutorial
In this tutorial, we will introduce how to install pyqt using anaconda on windows 10.
Preliminary
You should create a python environment using anaconda, we have created a py3.7 environment with python 3.7, you also can create one by this tutorial.
Install and Use Both Python 2 and Python 3 in Windows with Anaconda
Activate py3.7 environment
activate py3.7
Which means we will install pyqt with python 3.7.
Install PyQT with conda command
conda install -c conda-forge pyqt
Anaconda will detect our enviroment and list all libraries you should installend.
From above picture, we can find we will install pyqt5 on python 3.7.
Then press y, you will install pyqt into your python 3.7 environment. It is very easy.