【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘

✅作者简介:大家好我是hacker707,大家可以叫我hacker
个人主页:hacker707的csdn博客
系列专栏:hacker的错误集
如果觉得博主的文章还不错的话,请三连支持一下博主哦

【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第1张图片

hacker错误集

  • 报错内容
    • 报错分析
      • 解决方案

报错内容

今天,在给一个粉丝远程解决技术问题的时候,发现的一个大家可能都会犯的错误
错误内容如下:

报错分析

AttributeError:module ‘requests’ has no attribute ‘get’,依旧是使用单词的意思来分析报错原因
AttributeError 属性错误
module 模块
分析可以得出:属性错误:requests没有get属性
居然:好家伙,这咋办啊
hacker:慌什么慌,其实很好解决啦

解决方案

解决方案很简单大家注意他的模块名和文件名都是requests
【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第2张图片
居然:好像是的哦,那应该怎么解决啊
hacker:来,我给你讲讲哈
其实很简单,因为他的模块名和文件名冲突了,当他导入这个库时系统会觉得他导入的是requests.py这个文件,所有会报错,只需要把文件名修改一下就行了
居然:那应该怎么修改啊
hacker:很简单啊,鼠标右键项目,点击Refactor—>Rename修改一下点击Refator就行了
【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第3张图片
【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第4张图片
修改完再运行一下看看是否解决了
【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第5张图片
完美解决
居然:还得是你啊
hacker:嘻嘻嘻
【hacker的错误集】AttributeError:module ‘requests‘ has no attribute ‘get‘_第6张图片

你可能感兴趣的:(hacker的错误集,python,pycharm)