I want to run a pyvirtualdisplay on my Mac.
After installing all dependencies I installed X11 because i needed Xvfb to run and changed some permission for some folder called ~/.Xauthority to 777.
Still, if I ran
display = pyvirtualdisplay.Display(visible=0, size=(320, 240)).start()
XStartTimeoutError: Failed to start X on display ":1013" (xdpyinfo check failed).
What I also tryed was to change X11Forwarding in my /etc/ssh/sshd_config file to yes. Did not work out.
How can I resolve the issue?
Constructive help appreciated.