
python爬虫
铿锵的玫瑰
业余爱好者
展开
-
Pyspider的配置与安装
通过下列命令行安装pyspiderpip install pyspider测试是否安装成功pyspider all如果报错出现下列情况:ValueError: Invalid configuration: - Deprecated option 'domaincontroller': use 'http_authenticator.domain_controller' i...原创 2019-04-07 16:15:53 · 861 阅读 · 0 评论 -
Pip命令 ImportError
from pip import main ImportError: cannot import name 'main'上述问题可以有两种解决方案方案一:python3 -m pip install 模块名方案二:进入 pip的安装文件夹,打开pip文件 将from pip import main 修改为:from pip._internal import main ...原创 2019-04-07 16:20:32 · 246 阅读 · 0 评论 -
MongoDB启动失败
使用下列命令来启动MongoDBnet start MongoDB遇到如下错误通过任务管理器的服务查看MongoDB服务的状态通过任务管理器下方的“打开服务”,来查看MongoDB Server的属性通过下列命令再次启动MongoDB服务E:\MongoDB\bin\mongod.exe --config "E:\MongoDB\bin\mongod.cfg" --s...原创 2019-04-07 16:31:07 · 971 阅读 · 0 评论 -
利用pytesseract和tesseract实现验证码的识别
下载tesseracthttps://digi.bib.uni-mannheim.de/tesseract/安装tesseract,并将软件的安装目录添加到系统的环境变量中利用pip工具安装pytesseractpip install pytesseract如果在运行pytesseract的过程中出现错误:无法找到tesseract,则可以通过下列方式进行解决:打开pyte...原创 2019-04-07 16:40:33 · 479 阅读 · 0 评论 -
Redis的配置
Redis的下载地址https://github.com/MicrosoftArchive/redis/releasesRedis Desktop Manager的下载地址https://github.com/uglide/RedisDesktopManager将下载好的Redis解压到一个文件夹中在命令行中启动服务redis-server.exe redis.windo...原创 2019-04-07 16:50:11 · 162 阅读 · 0 评论