-
I tried three environments: python 3.6.8 on RHEL7, python3.9.16 on RHEL7, python 3.9.16 on RHEL9. I use the following command to install packages:
The following are my code:
With python 3.6.8 on RHEL7 & python3.9.16 on RHEL7, both work perfectly.
The following simple pyqt5 webengine code has the same issue before and can be fixed by adding ['', '--no-sandbox'] to QApplication([]). so I tried to add ['', '--no-sandbox'] for QApplication([]) in the .venv/lib/python3.9/site-packages/webview/platforms/qt.py but it doesn't work.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is an existing no sandbox logic enabled for some platforms found in pywebview/webview/platforms/qt.py Line 49 in 2d1833d Could you test if enabling it on RHEL9 solves the problem? |
Beta Was this translation helpful? Give feedback.
There is an existing no sandbox logic enabled for some platforms found in
pywebview/webview/platforms/qt.py
Line 49 in 2d1833d
Could you test if enabling it on RHEL9 solves the problem?