This repository has been archived by the owner on Dec 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
FAQ
树华 edited this page Mar 7, 2018
·
4 revisions
这里搜集到部分使用者使用过程中遇到的问题。
熟悉python的开发者可以跳过这个问题。找到main位置运行即可。 对于不熟悉Python的用户,我们有几种方式可以运行。
- 双击main.py(不推荐)因为这样程序遇到错误或者结束会一闪而过,不能准确看到信息。
- 在文件夹根目录下按住键盘shift键,鼠标点击右键,在弹出的框中选择在此处打开powershell/命令行。输入
python main.py
。 - 下载pycharm,在main位置,右键运行。(推荐)
- 程序是基于python写的,我们需要安装python环境。
- 程序使用了python的部分依赖,我们可以在文件夹根目录下按住键盘shift键,鼠标点击右键,在弹出的框中选择在此处打开powershell/命令行。输入
pip install -r requirements.txt
- 依赖安装失败,这种情况一般是scrapy的问题,我们需要到python包收集网址把对应系统,对应python版本的twisted安装包下载下来安装。再下载pywin32安装,最后在pip install -r requirements.txt
详见https://github.com/will4906/PatentCrawler/wiki/QueryInfo
目前仅支持sqlite数据库的数据持久化方式,后期会补上excel格式等。 至于sqlite如何查看,我们可以下载navicat这个数据库查看软件,建立新连接选择output目录下的后缀为.db的文件即可。
有能力的开发者请自行阅读代码然后添加,添加难度不是很高。 或者和我联系qq: 553105821,来者请注明原因。不过作者不一定有时间,所以还是请尽量自行添加,提交pull request促进软件的共同发展。
在queryinfo表格中,那些unknow表示作者没有实际测试过。但是应该问题不大的字段。如果有问题,请提交issue,并给出例子。作者尽量修改。
形如
Traceback (most recent call last):
File "D:/PycharmProjects/net.bjxueche/CoreImage.py", line 82, in <module>
text = image_to_string(image=image, boxes=True)
File "D:\mysoft\Python\Python35\lib\site-packages\pytesseract\pytesseract.py", line 162, in image_to_string
config=config)
File "D:\mysoft\Python\Python35\lib\site-packages\pytesseract\pytesseract.py", line 95, in run_tesseract
stderr=subprocess.PIPE)
File "D:\mysoft\Python\Python35\lib\subprocess.py", line 950, in __init__
restore_signals, start_new_session)
File "D:\mysoft\Python\Python35\lib\subprocess.py", line 1220, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] 系统找不到指定的文件。
解决方案,详见http://blog.csdn.net/supercooly/article/details/51314659
您的赞助和点赞是我的无限动力!