安装后如何获取 python 包的完整路径

how to get full path of python package after installation

所以我是编程初学者。我正在尝试将 jpeg 文件转换为文本文件,但无法执行 so.i 我收到错误消息

try:
    from PIL import Image
except ImportError:
    import Image
import pytesseract
print(pytesseract.image_to_string(Image.open('A_1.jpg')))

我查看了文档并找到了错误的原因和解决方法:

'If you don't have tesseract executable in your PATH, include the following:
pytesseract.pytesseract.tesseract_cmd = r'<full_path_to_your_tesseract_executable>'
# Example tesseract_cmd = r'C:\Program Files (x86)\Tesseract-OCR\tesseract'

所以根据文档,我应该包括安装的可执行文件的完整路径,但我不知道如何获取路径。我正在研究 linux 并且是 linux.could 的新手,请注意

安装后如何获取python包的完整路径?

要找到 python 包的路径,您可以这样做

import pytesseract
print(pytesseract.__file__)

打印类似

的东西
\WPy64-3880\python-3.8.8.amd64\lib\site-packages\pytesseract\__init__.py