所以我试图使用pytesseract运行一些代码,但出现此错误:
raise TesseractNotFoundError()
TesseractNotFoundError: tesseract is not installed or it's not in your path
此站点上有一篇文章提供了解决方案,我将其添加到了代码中并修复了问题:
pytesseract.pytesseract.tesseract_cmd = r"C:\Program Files (x86)\Tesseract-OCR\tesseract.exe"
但是,我想了解这行代码到底在做什么,因为我不明白?看来它正在pytesseract库上调用方法?我不明白,这是可以与任何库一起使用的代码行吗?程序文件路径前面的“ r”有什么作用?