I am trying to launch a script from blender 2.82 which uses PyQt5. PyQt5 module is installed and when running python3 from terminal and import PyQt5.QtCore, it works fine.
When i try to import from my blender script, it fails. I have tried to add in the script
import sys
sys.path.append("/usr/lib/python3/dist-packages")
which is the path where my python packages are installed, but still fails to import the module
What am I doing wrong?