Setting up and Installing PyQt5
Install VSCode.
Install Python version 2.7.17.
Reason for using this version: Same Python version as Jetson Nano.
Upgrade pip.
Open the command prompt and run:
pip2 install --upgrade pip
Install PyQt5.
In the command prompt, run:
pip2 install python-qt5
Install the ‘python’ and ‘qt for python’ extensions in VSCode.
Verify the installation.
In the command prompt, run:
python2
And then:
import PyQt5
If there are no errors, the installation was successful.