- Install the requirements:
pip install -r requirements.txt - Put your PDF in the same directory as this script. You must name the file
resolve-manual.pdf, otherwise it will not work. If you want to use a different file name, then change it here insearch.py:
if __name__ == "__main__":
root = tk.Tk()
app = PDFSearchGUI(root, "resolve-manual.pdf")
root.mainloop()- Run the script:
python search.py