The below command:
buildings = ox.buildings_from_place(place_name)
Is failing with the below error:
module 'osmnx' has no attribute 'buildings_from_place'
I had to use this instead:
buildings = ox.footprints_from_place(place_name)
NOTE: it seems .buildings_from_place() was removed in v10.