Overpy 在导入时返回属性错误

Overpy returning attribute error upon import

我一直在圣诞节前使用 overpy 测试一些代码,现在它给我一个属性错误。还有其他人有这个问题吗?还是我的控制台损坏了?

代码:

from geopy.geocoders import Nominatim
import overpy

api = overpy.Overpass()

geolocator = Nominatim(user_agent="specify_your_app_name_here")
location = geolocator.geocode(input('Enter location:'))


cords = (location.latitude, location.longitude, location.latitude, location.longitude)


result = api.query("node"+f'{cords}'+";out;")

node = result.nodes[0]
print(node.id)
print(location.latitude)
print(location.longitude)

Returns

AttributeError: module 'overpy' has no attribute 'Overpass

此处链接的文档

https://readthedocs.org/projects/python-overpy/downloads/pdf/stable/

本机下载 Python 并使用 Pycharm 下载 运行 并且有效,可能是我的 anaconda 有问题。

谢谢