I want to learn folium with the following documation
https://python-visualization.github.io/folium/index.html
But when I use pip install found that only have version 0.5.0 in Windows command
Does someone know about this question?
I want the latest version because I got a problem with its function markers
m = folium.Map(
location=[45.372, -121.6972],
zoom_start=12,
tiles='Stamen Terrain'
)
tooltip = 'Click me!'
folium.Marker([45.3288, -121.6625], popup='<i>Mt. Hood Meadows</i>',
tooltip=tooltip).add_to(m)
folium.Marker([45.3311, -121.7113], popup='<b>Timberline Lodge</b>',
tooltip=tooltip).add_to(m)
m