We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f4b423 + fbe0cd5 commit 7c61b48Copy full SHA for 7c61b48
Orange/__init__.py
@@ -32,3 +32,14 @@
32
33
AnyQt.importhooks.install_backport_hook('pyqt4')
34
del AnyQt
35
+
36
37
+# A hack that prevents segmentation fault with Nvidia drives on Linux if Qt's browser window
38
+# is shown (seen in https://github.com/spyder-ide/spyder/pull/7029/files)
39
+try:
40
+ import ctypes
41
+ ctypes.CDLL("libGL.so.1", mode=ctypes.RTLD_GLOBAL)
42
+except: # pylint: disable=bare-except
43
+ pass
44
+finally:
45
+ del ctypes
0 commit comments