I am currently trying to make pygame run on my Ubuntu 20.04 machine. After getting the error 'No available video device' I added the following lines of code:
import os
os.environ['SDL_VIDEODRIVER'] = 'dummy'
Now the error message is gone, but the window still does not pop up... I am using python 3.8.3 and pygame 2.0.0.dev10.
Does somebody know what I am missing?