我已经使用 conda config --prependchannels conda-forge、conda create -n ox --strict-channel-priority osmnx 安装了 osmnx。当我尝试使用 osmnx 模块时,没有一个模块正在工作,例如当我使用时:
import osmnx as ox
place_name = "Mitte, Hannover, Germany"
ox.graph_from_place(place_name, network_type='drive')
我收到错误:
AttributeError: module 'osmnx' has no attribute 'graph_from_place'
当我使用时:
import osmnx as ox
ox.config(use_cache=True, log_console=True)
我收到错误:
AttributeError: module 'osmnx' has no attribute 'config'
等等。没有属性起作用
我还尝试根据https://osmnx.readthedocs.io/en/stable/osmnx.html#module-osmnx.graph使用属性,但它也无法解决相同的错误:
import osmnx as ox
place_name = "Mitte, Hannover, Germany"
ox.graph.graph_from_place(place_name, network_type='all_private')
AttributeError: module 'osmnx' has no attribute 'graph'
ox环境的python版本是3.8.6和Spyder(4.1.4)。您能帮我找到这些错误的解决方案吗?
达令说
相关分类