kaaos
kaaos

Reputation: 31

Mapnik module not found

After upgrading my OS to Yosemite I also wanted to go with the newest version of Mapnik. I made a clean install of OS on a new hard drive and installed all the things I need using Homebrew.

After installing successfully, when I try to import mapnik I get:

Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named mapnik

Mapnik-config -v
3.0.0

I have tried everything I can think of and tried searching everywhere but I just can't get it running. Any help would be highly appreciated!

Upvotes: 2

Views: 2752

Answers (1)

kaaos
kaaos

Reputation: 31

Finally found an answer. Python bindings have to be installed separately like:

python setup.py install

https://github.com/mapnik/python-mapnik

Upvotes: 1

Related Questions