Python 3.6 Module cannot be found: Folium

It is not available via default conda channel. Try using conda-forge channel to install folium as show below:

conda install -c conda-forge folium

I solved the same problem by executing following command

python3 -m pip install folium

From the source:

  • Choose the sandbox folder of your choice (~/sandbox for example)

    $ mkdir visualization
    $ cd visualization
    
  • Clone folium from github:

    $ git clone https://github.com/python-visualization/folium
    
  • Run the installation script

    $ cd folium
    $ python setup.py install