camelot icon indicating copy to clipboard operation
camelot copied to clipboard

Camelot without X

Open HoffmannP opened this issue 4 years ago • 1 comments

Is there any way to run camelot (and I suspect it depends on some underlying library) without X-server?

HoffmannP avatar Dec 11 '21 21:12 HoffmannP

I have been able to run camelot from a container without an X server.. I am not sure where the X server requirement is coming from. for displaying plots for debugging from the console.. i have been using the following code..

from imgcat import imgcat
import matplotlib
matplotlib.use("module://imgcat")
plt = camelot.plot(table, kind='text')
plt.show()

I hope this helps.

ramSeraph avatar Mar 07 '22 12:03 ramSeraph