204 lines
5.6 KiB
Markdown
204 lines
5.6 KiB
Markdown
# Mapnik Installation
|
|
|
|
Mapnik runs on Linux, OS X, Windows, and BSD systems.
|
|
|
|
## Package managers
|
|
### vcpkg
|
|
To install mapnik with vcpkg type `vcpkg install mapnik`. It will install a minimal version of mapnik and all the needed dependencies.
|
|
To install more features, type `vcpkg search mapnik` to see all available features.
|
|
|
|
## Source build
|
|
|
|
First clone mapnik from github and initialize submodules
|
|
|
|
```bash
|
|
git clone https://github.com/mapnik/mapnik.git
|
|
cd mapnik
|
|
git submodule update --init
|
|
```
|
|
|
|
To configure and build Mapnik do:
|
|
|
|
```bash
|
|
./configure
|
|
make
|
|
```
|
|
|
|
To trigger parallel compilation you can pass a JOBS value to make:
|
|
|
|
```bash
|
|
JOBS=4 make
|
|
```
|
|
|
|
Mapnik needs > 2 GB of RAM to build. If you use parallel compilation it needs more.
|
|
|
|
If you are on a system with less memory make sure you only build with one JOB:
|
|
|
|
```bash
|
|
JOBS=1 make
|
|
```
|
|
|
|
To use a Python interpreter that is not named `python` for your build, do
|
|
something like the following instead:
|
|
|
|
```bash
|
|
$ PYTHON=python3 ./configure
|
|
$ make PYTHON=python3
|
|
```
|
|
|
|
NOTE: the above will not work on windows, rather see https://github.com/mapnik/mapnik/wiki/WindowsInstallation
|
|
|
|
Then to run the tests locally (without needing to install):
|
|
|
|
make test
|
|
|
|
Install like:
|
|
|
|
make install
|
|
|
|
If you need to uninstall do:
|
|
|
|
make uninstall
|
|
|
|
For more details see the `Building` Section below.
|
|
|
|
Platform specific install guides at https://github.com/mapnik/mapnik/wiki/Mapnik-Installation
|
|
|
|
For troubleshooting help see https://github.com/mapnik/mapnik/wiki/InstallationTroubleshooting
|
|
|
|
|
|
## Depends
|
|
|
|
Build system dependencies are:
|
|
|
|
* C++ compiler supporting `-std=c++17` (like >= g++ 9 or >= clang++ 5)
|
|
* \>= 2 GB RAM (> 5 GB for g++)
|
|
* Python 3
|
|
* Scons (a copy is bundled) or CMake >= 3.15 see [docs/cmake-usage.md](./docs/cmake-usage.md)
|
|
|
|
Mapnik Core depends on:
|
|
|
|
* Boost
|
|
- \>= 1.73 is required
|
|
- These libraries are used:
|
|
- filesystem
|
|
- system
|
|
- regex (optionally built with icu regex support)
|
|
- program_options (optionally for mapnik command line programs)
|
|
* libicuuc >= 4.0 (ideally >= 4.2) - International Components for Unicode
|
|
* libz - Zlib compression
|
|
* libfreetype - Freetype2 for font support (Install requires freetype-config)
|
|
* libxml2 - XML parsing (Install requires xml2-config)
|
|
* libharfbuzz - an OpenType text shaping engine (>=0.9.34 needed for CSS font-feature-settings support)
|
|
|
|
Mapnik Core optionally depends on:
|
|
|
|
* libpng >= 1.2.x - PNG graphics (Default enabled, if found)
|
|
* libjpeg - JPEG graphics (Default enabled, if found)
|
|
* libtiff - TIFF graphics (Default enabled, if found)
|
|
* libwebp - WEBP graphics (Default enabled, if found)
|
|
* libproj >= 7.2.0 - PROJ projection library (Default enabled, if found)
|
|
|
|
Additional optional dependencies:
|
|
|
|
* Cairo >= 1.6.0 - Graphics library for output formats like PDF, PS, and SVG
|
|
- pkg-config - Required for building with cairo support
|
|
* PostgreSQL (for PostGIS plugin support)
|
|
- libpq - PostreSQL libraries
|
|
- pg_config - PostgreSQL installation capabilities
|
|
* libgdal - GDAL/OGR input (For gdal and ogr plugin support) (>= GDAL 2.0.2 for thread safety - https://github.com/mapnik/mapnik/issues/3339)
|
|
* libsqlite3 - SQLite input (needs RTree support builtin) (sqlite plugin support)
|
|
|
|
Instructions for installing many of these dependencies on
|
|
various platforms can be found at the Mapnik Wiki:
|
|
|
|
https://github.com/mapnik/mapnik/wiki/Mapnik-Installation
|
|
|
|
|
|
## Building
|
|
|
|
The build system uses SCons, a pure python equivalent to autotools or cmake.
|
|
|
|
We provide a simple Makefile wrapper that can be used like:
|
|
|
|
./configure && make && make install
|
|
|
|
For help on what options are accepted do:
|
|
|
|
./configure --help
|
|
|
|
To interact with the local copy of scons directly you can do:
|
|
|
|
python scons/scons.py configure
|
|
|
|
You can also use a globally installed scons:
|
|
|
|
scons configure
|
|
|
|
If you want to clean your build do:
|
|
|
|
make clean
|
|
|
|
If you experience odd configure errors, try cleaning the configure caches:
|
|
|
|
make distclean
|
|
|
|
To install in a custom location do:
|
|
|
|
./configure PREFIX=/opt/mapnik
|
|
|
|
To pass custom CXXFLAGS or LDFLAGS do:
|
|
|
|
./configure CUSTOM_CXXFLAGS="-g -I/usr/include" CUSTOM_LDFLAGS="-L/usr/lib"
|
|
|
|
To pass custom paths to a dependency, like boost, do:
|
|
|
|
./configure BOOST_INCLUDES=/opt/boost/include BOOST_LIBS=/opt/boost/lib
|
|
|
|
To pass custom paths to a dependency, like icu, do:
|
|
|
|
./configure ICU_INCLUDES=/usr/local/include ICU_LIBS=/usr/local/include
|
|
|
|
For more details on usage see:
|
|
|
|
https://github.com/mapnik/mapnik/wiki/UsingScons
|
|
|
|
|
|
## Testing Installation
|
|
|
|
You can run the Mapnik tests locally (without installing) like:
|
|
|
|
make test
|
|
|
|
## Python Bindings
|
|
|
|
Python bindings are not included by default. You'll need to add those separately.
|
|
|
|
* Build from source: https://github.com/mapnik/python-mapnik
|
|
|
|
## Learning Mapnik
|
|
|
|
### Help
|
|
|
|
Mapnik has an active community of talented users and developers making beautiful maps.
|
|
|
|
If you need help or want to participate starting points include:
|
|
|
|
- Sign up and post to the mailing list: http://mapnik.org/contact/
|
|
- Join and ask questions on the #mapnik channel on irc://irc.freenode.net/mapnik
|
|
- Add your help questions to https://github.com/mapnik/mapnik-support
|
|
|
|
### Cartographers
|
|
|
|
TileMill, which uses Mapnik internally, offers great step by step tutorials for
|
|
learning advanced map styling: https://tilemill-project.github.io/tilemill/docs/crashcourse/introduction/
|
|
|
|
### Programmers
|
|
|
|
Mapnik is great for building your own mapping applications. Visit
|
|
https://github.com/mapnik/mapnik/wiki/LearningMapnik for basic
|
|
tutorials on how to programmatically use Mapnik.
|
|
|
|
### Contributors
|
|
|
|
Read [docs/contributing.md](docs/contributing.md) for resources for getting involved with Mapnik development.
|