I made a note because it didn't come out even if I googled it.
from IPython.display import display_pdf filename = "Your pdf file name" with open(filename,"rb") as f: display_pdf(f.read(),raw=True)
Come out with.
Recommended Posts