.. Copyright (c) 2018, Johan Mabille and Sylvain Corlay, and Wolf Vollprecht Distributed under the terms of the BSD 3-Clause License. The full license is in the file LICENSE, distributed with this software. .. raw:: html Installation ============ .. image:: conda.svg Using the conda-forge package ----------------------------- A package for xleaflet is available on the mamba package manager. The package will also pull all the dependencies. .. code:: mamba install xleaflet -c conda-forge .. image:: cmake.svg From source with cmake ---------------------- You can also install ``xleaflet`` from source with cmake. On Unix platforms, from the source directory: However, you need to make sure to have the required libraries available on your machine. .. code:: mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix .. make install On Windows platforms, from the source directory: .. code:: mkdir build cd build cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=/path/to/prefix .. nmake nmake install