Running panda3d without graphics card

Is it possible to run an panda app on server machine that does not have a graphics card?

Are there any hacks i need to make? Or can i get away by just not opening a window?

Thank you in advance

You can just get away with not opening a window.

and for that ,all you need to do is chance your config file to disable the rendering.
alternatively you can put those 2 lines at the very beginning of your server-code (usualy line 0 and 1, in any case it must be before importind direct start)

from pandac.PandaModules import loadPrcFileData
loadPrcFileData("", "window-type none")

Thank you, both