Reputation: 408
I have a code that have QtWebEngineWidgets
module from PyQt5
. it works fine in raw form (.py) but throws the following .dll and openGL missing error when freeze through pyinstaller. PyQt5
and pyinstaller
are both upto date.
Also, for your information, i am running this code on amazon c2 instance.
Upvotes: 0
Views: 309
Reputation: 408
from the issue of Anaconda, the following command when run on the cmd, the error will be fix
set QT_OPENGL=desktop
Upvotes: 0