我想在我的jupyter笔记本上暗示谷歌地图。我的环境是OSX并且主要使用conda
分发python。
我在conda列表和点列表中看到gmaps
,我可以成功导入gmaps
。
但是,我无法拨打configure
。
import gmaps
import gmaps.datasets
gmaps.configure(api_key="AI...")
fig = gmaps.figure()
fig
然后我收到了此错误消息。
AttributeError: module 'gmaps' has no attribute 'configure'
我怎样才能找出这个问题?
谢谢!