我已經(jīng)使用 conda config --prependchannels conda-forge、conda create -n ox --strict-channel-priority osmnx 安裝了 osmnx。當(dāng)我嘗試使用 osmnx 模塊時(shí),沒有一個(gè)模塊正在工作,例如當(dāng)我使用時(shí):import osmnx as oxplace_name = "Mitte, Hannover, Germany"ox.graph_from_place(place_name, network_type='drive')我收到錯(cuò)誤:AttributeError: module 'osmnx' has no attribute 'graph_from_place'當(dāng)我使用時(shí):import osmnx as oxox.config(use_cache=True, log_console=True)我收到錯(cuò)誤:AttributeError: module 'osmnx' has no attribute 'config'等等。沒有屬性起作用我還嘗試根據(jù)https://osmnx.readthedocs.io/en/stable/osmnx.html#module-osmnx.graph使用屬性,但它也無法解決相同的錯(cuò)誤:import osmnx as oxplace_name = "Mitte, Hannover, Germany"ox.graph.graph_from_place(place_name, network_type='all_private')AttributeError: module 'osmnx' has no attribute 'graph'ox環(huán)境的python版本是3.8.6和Spyder(4.1.4)。您能幫我找到這些錯(cuò)誤的解決方案嗎?
1 回答

達(dá)令說
TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超6個(gè)贊
您的桌面上有一個(gè)名為的文件osmnx.py
,并且正在導(dǎo)入該文件而不是已安裝的模塊。重命名該文件。
添加回答
舉報(bào)
0/150
提交
取消