camelot
camelot copied to clipboard
Camelot without X
Is there any way to run camelot (and I suspect it depends on some underlying library) without X-server?
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.