按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘

参考教程

在anoconda下的jupter lab

1)在anoconda的jupyter lab测试 测试代码(lab里边可以直接 pip install itchat)测试自动回复成功!
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第1张图片
2)在jupter lab继续测试完整代码,提示:
cell not executed due to pending input
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第2张图片
因为没有安装pycharm所以转战 python自带的idle

在python自带idle

1)首先打开idle新建一个.py文件并且save
2)打开idle打开已有的.py文件,发现编辑窗口出现【run】这个选项or按键F5就可以运行惹
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第3张图片
3)同样的会说 module not found:itchat
即ModuleNotFoundError: No module named ‘itchat’
也就是说之前的jupyter lab 已经pip的itchat需要在python整体环境中再pip一遍,所以鄙人直接在idle的窗口疯狂pip,疯狂得到报错:(这不比自动回复还真实嘛)
报错:SyntaxError: invalid syntax. Perhaps you forgot a comma?
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第4张图片
4)搞了半天,原来是要去cmd命令行那边pip哈哈哈(此时此刻pycharm的优越性就可以体现地淋漓尽致了)完美
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第5张图片
5)继续在idle run代码,出现新的报错
AttributeError: ‘HTMLParser’ object has no attribute ‘unescape’

按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第6张图片
6)尝试了把setuptools uninstall之后再安装低版本的,然鹅还是报错
参考:https://blog.csdn.net/pythontide/article/details/109316457
7)最后安装3.8版本的python,并且使用pycharm是真的香
参考:https://blog.csdn.net/weixin_39399124/article/details/118734567
8)直接在pycharm上运行
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第7张图片
然鹅目前只支持text,回头尝试尝试图片嘿嘿,以及这个机器人对话过于机器人了,还可以尝试说两句或者分开成几句,表现急促!!哈哈哈哈
按照教程实战踩坑填坑记录用python实现微信消息自动回复 AttributeError: ‘HTMLParser‘ object has no attribute ‘unescape‘_第8张图片

参考教程:https://blog.csdn.net/qq_51751553/article/details/122115771?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522164419199616781683918478%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fall.%2522%257D&request_id=164419199616781683918478&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2allfirst_rank_ecpm_v1~rank_v31_ecpm-1-122115771.first_rank_v2_pc_rank_v29&utm_term=python%E5%BE%AE%E4%BF%A1%E8%87%AA%E5%8A%A8%E5%9B%9E%E5%A4%8D&spm=1018.2226.3001.4187

你可能感兴趣的:(Py小Bug,python,微信,pycharm)