Python报错
雀影
这个作者很懒,什么都没留下…
展开
-
selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element
一天一bug,个个不一样今天写python爬虫,又又又遇到了bug。先看一些bug长什么样吧。 raise exception_class(message, screen, stacktrace)selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document (Session info原创 2021-02-01 15:40:58 · 2138 阅读 · 0 评论 -
使用pycharm编写python爬虫时的乱码解决方案
一天一bug,个个不一样。今天在编写python爬虫时,又遇到了乱码。先看一下我编写的代码:import requestsfrom fake_useragent import UserAgenturl = "http://www.farmer.com.cn/2021/01/25/99864972.html"headers = { 'User-Agent': UserAgent().random}response = requests.get(url, headers=header原创 2021-01-30 11:46:43 · 1467 阅读 · 1 评论 -
使用pycharm编写python爬虫时出现乱码的解决方案UnicodeEncodeError: ‘gbk‘ codec can‘t encode character ‘\U0001f601‘ in
一杯茶,一首歌,一个bug改一天。今天在学习python多线程时,遇到的了乱码的情况,让我们先看一看是什么情况的吧在这样一段代码中:response = requests.get(url_queue.get(), headers=headers)info = response.textprint(info)报出如下错误:UnicodeEncodeError: 'gbk' codec can't encode character '\U0001f601' in position 36140:原创 2021-01-25 17:06:03 · 5300 阅读 · 6 评论 -
Could not install packages due to an EnvironmentError: [WinError5] 拒绝访问。: ‘c:\\program files\\python
在使用pip命令安装easygui时出现如下错误:Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。: 'c:\\program files\\python\\Lib\\site-packages\\easygui'Consider using the `--user` option or check the permissions.一般这种错误都是权限不足导致的解决方案如下:1.使用管理员身份打开原创 2021-01-10 18:26:57 · 319 阅读 · 0 评论