How to install pytesseract library in jetson nano?

I want to install pytesseract library by using command.Sudo -H pip3 install pytesseractBut having trouble i.e. have to use python 3.7 while my python is 3.6.9 how to solve this problem?

Hi,

Please try the following commnad.
We can install and load the library on JetPack 4.6.1 correctly.

$ pip3 install pytesseract
$ python3
Python 3.6.9 (default, Mar 15 2022, 13:55:28)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pytesseract
>>> pytesseract.__version__
'0.3.8'
>>>

Thanks.

I have tried and there is an error pytesseract requires Python >=3.7 but the running Python is 3.6.9

Hi,

Which pip3 version do you use? We test it with version 21.3.1.
Would you mind using the same pip3 version and trying it again?

Thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.