File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -82,3 +82,41 @@ Reinstalling CUDA on Linux can be quickly done with this script
82
82
83
83
# install GPU driver and CUDA Toolkit from CLI silently
84
84
sudo bash ~ /Downloads/cuda_10.2.89_440.33.01_linux.run --silent --driver --toolkit
85
+
86
+
87
+ Specific Errors
88
+ ===============
89
+
90
+
91
+ SystemError: <built-in function connectSlotsByName> returned a result with an error set
92
+ ---------------------------------------------------------------------------------------
93
+
94
+ This means that the PyQt package is missing or an old version (it must be newer than PyQt5==5.13.2)
95
+
96
+ Suggested Fix
97
+ #############
98
+
99
+ Install PyQt5 and pyqtgraph with :code: `pip install pyqt5==5.15 pyqtgraph==0.11 `
100
+
101
+
102
+
103
+ qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
104
+ ----------------------------------------------------------------------------------------------
105
+
106
+ This might mean some system libraries are missing
107
+
108
+ Suggested Fix
109
+ #############
110
+
111
+ Try installing :code: `apt install libxcb-xinerama0 `
112
+
113
+ qt.qpa.xcb: could not connect to display...
114
+ -------------------------------------------
115
+
116
+ Missing :code: `DISPLAY ` variable. This means the application cannot find the display to show itself on.
117
+
118
+
119
+ Suggested Fix
120
+ #############
121
+
122
+ You can set this via :code: `export DISPLAY=:N ` where :code: `:N ` should be the number of your display
You can’t perform that action at this time.
0 commit comments