日常报错
LELE2524233
这个作者很懒,什么都没留下…
展开
-
UnicodeEncodeError: ‘gbk‘ codec can‘t encode character ‘\xa0‘ in position...问题解决办法
将网络数据流写入文件时时,我们会遇到几个编码:with open('demo.html', 'w',) as f: f.write(data)这时会报一下错误:UnicodeEncodeError: ‘gbk’ codec can’t encode character ‘\xa0’ inposition解决方法:with open('demo.html', 'w',encoding="utf-8") as f: f.write(data)这样就完美运行了...原创 2022-01-26 14:36:32 · 365 阅读 · 0 评论 -
Unable to start phantomjs with ghostdriver 错误
Unable to start phantomjs with ghostdriver原创 2022-01-18 16:39:45 · 1667 阅读 · 0 评论 -
出现AttributeError: module ‘selenium.webdriver‘ has no attribute ‘PhantomJS异常的解决方法
python3.6 安装最新版的Selenium 调用 PhantomJS总是报错交互窗口中完全不能用 把PhantomJS.exe放到Python根目录后运行命令行程序总是有一行这时需要下载旧版本的Selenium在Scripts命令行运行:pip install selenium==2.33...原创 2022-01-18 16:22:50 · 14384 阅读 · 0 评论