Skip to content

Commit 9c1d31b

Browse files
author
Dimitar Tasev
committed
Add a couple of errors
1 parent e9837dd commit 9c1d31b

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

docs/troubleshooting.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,41 @@ Reinstalling CUDA on Linux can be quickly done with this script
8282
8383
# install GPU driver and CUDA Toolkit from CLI silently
8484
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

0 commit comments

Comments
 (0)