PyVirtualDisplay icon indicating copy to clipboard operation
PyVirtualDisplay copied to clipboard

Python wrapper for Xvfb, Xephyr and Xvnc

Results 24 PyVirtualDisplay issues
Sort by recently updated
recently updated
newest added

When I try to run python3 -m pyvirtualdisplay.examples.headless, I got this error. Is this error caused by my xvfb? I'm not sure my xvfb is installed correctly. Traceback (most recent...

fixes #92 The problem causing the issue above is that `Xvfb` started to be a lot more chatty. Using it with `chrome` it keeps outputing the following on each connection:...

I am not 100% sure this is a pyVirtualDisplay problem (could be chrome or underlying libraries) but the following code fails for me at a count of 90 when visible=0...

The function select.select can only accept file descriptors below 1024. To avoid this limitation, the solution is to use select.poll in place of select.select. See: https://github.com/ponty/PyVirtualDisplay/issues/90

I use pyvirtualdisplay in a docker image to do scraping. After a time, I get the following error: ```python Traceback (most recent call last): File "/home/site/wwwroot/retriever/tools/browser_display.py", line 34, in start...

I am trying to run the following example ``` from pyvirtualdisplay import Display with Display() as disp: # display is active print(disp.is_alive()) # True # display is stopped print(disp.is_alive()) #...

how control mouse or keyboard inside of one visible screen is possible? ![image](https://github.com/ponty/PyVirtualDisplay/assets/2602039/53d1de13-0282-4648-a47c-66d9caf31972)

I need to create virtual display as https://learn.microsoft.com/en-us/sysinternals/downloads/desktops or https://github.com/henkman/virgo But i need create display in headless mode without switching my main, run application on second desktop , and make...

Code: ```python from pyvirtualdisplay import Display with Display(backend='xvnc') as disp: ... ``` Error: ``` start failed 10 Traceback (most recent call last): File "/usr/local/lib/python3.9/dist-packages/pyvirtualdisplay/abstractdisplay.py", line 155, in start self._start1() File...

I have installed tigervnc in Mac but when I ran python3 -m pyvirtualdisplay.examples.vncserver I am getting Traceback (most recent call last): File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File...