标签:原理 date 转义 top 识别 sage 路径 site src
发生了 WindowsError
Message=[Error 2]
StackTrace:
Popen._execute_child 中的 C:\Python27amd64\lib\subprocess.py:640
Popen.__init__ 中的 C:\Python27amd64\lib\subprocess.py:390
run_tesseract 中的 C:\Python27amd64\lib\site-packages\pytesseract\pytesseract.py:47
image_to_string 中的 C:\Python27amd64\lib\site-packages\pytesseract\pytesseract.py:123
GetImageDate.m 中的 C:\Users\Yu-we\Desktop\projects\ToolsSuite\PythonDataCatcher\ImageIdentification.py:9
按教程下载配置Path
pytesseract PIL
及安装 Tesseract-OCR
出现以上错误。。
原因:启动子进程时找不到程序文件。检查之下,是路径问题。路径写得没有问题,但就是不对。前面加个 r
解决。
加 r 是什么意思?
引:
在打开文件的时候open(r‘c:\....‘)
加r和不加‘‘r是有区别的
‘r‘是防止字符转义的 如果路径中出现‘\t‘的话 不加r的话\t就会被转义 而加了‘r‘之后‘\t‘就能保留原有的样子
在字符串赋值的时候 前面加‘r‘可以防止字符串在时候的时候不被转义 原理是在转义字符前加‘\‘
标签:原理 date 转义 top 识别 sage 路径 site src
原文地址:http://www.cnblogs.com/Yu-weiz/p/7682242.html