Skip to content Skip to sidebar Skip to footer

No Module Named 'folium.plugins', Python 3.6

I am trying to import folium into a Jupyter notebook I'm working on and I cannot seem to solve the import issues with the Folium library. Has anyone else solved this problem? After

Solution 1:

I have no idea why this works, but I was having the same problem and finally solved it with

import folium.plugins as plugins

cluster = folium.FeatureGroup(name='cluster')
cluster.add_child(plugins.MarkerCluster(locations=coords, popups=popups)

Post a Comment for "No Module Named 'folium.plugins', Python 3.6"