No matter what attribute I put alongside G = ox.________( ) it returns with an attribute error.
Currently the first part of my code is:
import osmnx as ox
place = ["Grand Rapids, MI"]
G = ox.graph_from_place(place, retain_all=True, simplify=True, network_type='all')
u = []
v = []
key = []
data = []
for uu, vv, kkey, ddata in G.edges(keys=True, data=True):
I've installed conda and the the exec file correctly. I have the latest osmnx update.