I am trying to plot the table to debug and find table coordinates, however the plot never appears on the screen. Camelot has built in functions that use the matplotlib library to plot the tables. I have all the dependencies downloaded for camelot, but I can't seem to figure out how to get the figure to appear.
tables = camelot.read_pdf('example.pdf', flavor = 'lattice')
print(tables[0].parsing_report)
plt = camelot.plot(tables[0], kind='grid')
plt.show()