Is there a way to check pytesseract version in python?
According to PyPi documentation of pytesseract, there is a built-in function get_tesseract_version to get pytesseract version. But when I run it in python, I get the following:
>>> import pytesseract >>> pytesseract.get_tesseract_version <function get_tesseract_version at 0x7f4b9edd4598> >>> print(pytesseract.get_tesseract_version) <function get_tesseract_version at 0x7f4b9edd4598> I know that I can get pytesseract version using pip freeze, but I want to get it using python. Is that possible?