module 'osmnx' has no attribute 'graph_from_place'

Viewed 517

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.

here's the debug info for ox.graph_from_place

and the debug info for ox.graph.graph_from_place

2 Answers
Related