ProgrammingHero1 / my_cool_browser

109 stars 166 forks source link

QtWeb error #13

Open Develepor-Coder opened 2 years ago

Develepor-Coder commented 2 years ago

line 4, in from PyQt5.QtWebEngineWidgets import * ImportError: DLL load failed while importing QtWebEngineWidgets: The specified module could not be found.

hg0428 commented 2 years ago
Traceback (most recent call last) :
  File "main.py", line 4, in <module>
       from PyQtWebEngine import *
  ModuleNotFoundError: No module named 'PyQtWebEngine'
Ekansh-is-Pro commented 2 years ago
Traceback (most recent call last) :
  File "main.py", line 4, in <module>
       from PyQtWebEngine import *
  ModuleNotFoundError: No module named 'PyQtWebEngine'

Just type

pip install PyQtWebEngine

in the command prompt it shall work

hg0428 commented 2 years ago

Traceback (most recent call last) :

  File "main.py", line 4, in <module>

       from PyQtWebEngine import *

  ModuleNotFoundError: No module named 'PyQtWebEngine'

Just type

pip install PyQtWebEngine

in the command prompt it shall work

Yea, you would think so, but nope, it still doesn't work. I've moved on from QT and now I'm building a web engine from scratch to use in future projects.