我是python新手,想安装和使用pytesser OCR库。我安装的所有其他模块都使用过easy_install,效果很好。但是pytesser是我必须使用Google Code的.zip文件手动安装的第一个工具。
按照自述文件(https://code.google.com/p/pytesser/wiki/README)中的说明,我将上下文提取到C:\Python27\Scripts文件中。但是,当我尝试:
from pytesser import *
在Python Shell中,出现以下错误:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
from pytesser import *
ImportError: No module named pytesser
有任何想法吗? Windows7。Python2.7。我使用PIL,Scrapy,Numpy等模块的其他脚本运行良好。
谢谢,
汤姆
最佳答案
您不应该将C:\Python27\Scripts
用于第三方模块,而应该使用C:\Python27\Lib\site-packages
。
关于python - 安装pytesser,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15567141/