我是python的新手,想安装并使用pytesser OCR库.我安装的所有其他模块,我都使用了easy_install,它运行良好.但pytesser是我第一次使用Google Code的.zip文件手动安装.
根据自述文件(https://code.google.com/p/pytesser/wiki/README)中的说明,我将上下文解压缩到我的C:\ Python27\Scripts文件中.但是,当我尝试:
from pytesser import *
Run Code Online (Sandbox Code Playgroud)
在Python Shell中,我收到以下错误:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
from pytesser import *
ImportError: No module named pytesser
Run Code Online (Sandbox Code Playgroud)
有任何想法吗?Windows 7. Python 2.7.我使用PIL,Scrapy,Numpy等模块的其他脚本工作正常.
谢谢,汤姆