First off, i know this has been asked quit often like here and in many other posts1 2 3 4 . I read all of the posts on this and other forums but none did resolve my issue or i did not understand where excatly i need to copy some missing dlls? I hope to find some guidance .
I recently installed python on win10 via the microsoft store. The version is Python 3.7.4. When i type "where python" i get the following result:
C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.1264.0_x64__qbz5n2kfra8p0\python.exe
C:\Users\xxx\AppData\Local\Microsoft\WindowsApps\python.exe
The packages are installed via pip to:
C:\Users\xxxx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37
When i try to import PyQt5 (which installed via pip without any error) i get the following result:
>>> from PyQt5.QtWidgets import QApplication
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.
I do see the PyQt5 packes in the "site-packages" folder.
I read somewhere that qt5 is not compatible at all with python in its current version. Is this correct? If so what would you advise me to use instead? At the moment i just want to create a small gui for a matplotlib bases plotting tool that needs to additional options like fileinpout and a few clickable buttons to choose options.
Thank you in advance.