I am working on a server with no X servers and trying to run a script that uses spynner module, which requires an X server. For this purpose, I want to run Xvfb.

I can run the script by calling it via xvfb-run, i.e.:

xvfb-run python2.6 try.py.

This works with no problem. However, I need to invoke Xvfb from within the script. For this purpose, I tried using subprocess as follows:

xvfb = subprocess.Popen(['Xvfb', ':99'])

After adding this piece of code to the beginning of the script, and trying to run the script as

python2.6 try.py

I get the message:

: cannot connect to X server

Is there something else I need to do? Thanks in advance.

link|improve this question

25% accept rate
feedback

1 Answer

up vote 2 down vote accepted

you'll need to add:

import os
os.environ["DISPLAY"]=":99"

so that when it goes to open the connection to the X server it'll be able to find the Xvfb instance you've started

link|improve this answer
It works perfectly. Thank you very much. – Ozgur Akcali Jul 25 '11 at 1:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.