Tesseract报错:esseract.exe is not installed or it's not in your path

用pytesseract这个包的时候报错,然后百度了一下环境变量也设置了,路径也改了,依旧同样的报错!
图片说明
报错提示是:**esseract**.exe is not installed or it's not in your path
但是我看其他人的报错提示都是**tesseract**.exe is not installed or it's not in your path
就tesseract和esseract是什么情况,为什么一直报错,求大佬解答

https://blog.csdn.net/qq_22521211/article/details/85788013
https://blog.csdn.net/weixin_38648232/article/details/85161815

我感觉你安装的 pytesseract 感觉不是正版的。从官网上找的证据 https://github.com/madmaze/pytesseract

tesseract_cmd = 'tesseract'
...

class TesseractNotFoundError(EnvironmentError):
    def __init__(self):
        super(TesseractNotFoundError, self).__init__(
            tesseract_cmd + " is not installed or it's not in your path"
        )