如何修复AttributeError:部分初始化的模块?

我正在尝试运行脚本,但始终收到此错误:

File ".\checkmypass.py", line 1, in <module>

import requests line 3, in <module>

response = requests.get(url) AttributeError: partially initialized module 'requests' has no attribute 'get' (most likely due to a circular import)

我该如何解决?

回答:

我遇到了同样的问题,我在同一文件夹中创建了一个文件,名为requests.py。因此,它实际上是在导入该文件,而不是实际上在请求您使用pip安装。然后,我创建的名为logging.py的文件出现了另一个问题。我都重命名了,问题解决了。听起来像是同样的问题…

以上是 如何修复AttributeError:部分初始化的模块? 的全部内容, 来源链接: utcz.com/qa/410322.html

回到顶部