Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,21 @@ That means you likely have built python-mapnik is linked against a differ python
/usr/bin/python <your script.py>
```

If you hit an error like the following when building with mason:

```
EnvironmentError:
Missing boost_python boost library, try to add its name with BOOST_PYTHON_LIB environment var.
```

Try to set `export BOOST_PYTHON_LIB=boost_python` before build.
Also, if `boost_thread` or `boost_system` is missing, do likewise:

```
export BOOST_SYSTEM_LIB=boost_system
export BOOST_THREAD_LIB=boost_thread
```

If you still hit a problem create an issue and we'll try to help.

## Tutorials
Expand Down