This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Set up Nominatim

1

I tried following the steps on https://wiki.openstreetmap.org/wiki/Nominatim/Installation after installing all prerequisits:

git clone git://github.com/twain47/Nominatim.git

Compile the postgresql module:

cd module
make

Compile the Nominatim tool:

cd nominatim
./autogen.sh
./configure
make

It seemed OK for all the steps until the last make that showed many messages including:

svnversion: command not found ...

What's the problem?

asked 25 May '12, 22:06

TryOSM's gravatar image

TryOSM
4111
accept rate: 0%

edited 25 May '12, 22:55

Gnonthgol's gravatar image

Gnonthgol ♦
13.8k16103198


One Answer:

3

It seems that you do not have the command 'svnversion' on your system. You can install the package subversion to get it.

I have added git and subversion to the requirements in the installation guide.

answered 25 May '12, 23:05

Gnonthgol's gravatar image

Gnonthgol ♦
13.8k16103198
accept rate: 16%

Many thanks, Gnonthgol! I have got subversion installed. Now I still have one problem:

"geos-config: command not found"

Does this mean another package missing?

(28 May '12, 16:31) TryOSM

Yes, you are missing the 'libgeos-dev' package.

You can search for files in all packages at packages.ubuntu.com to find the package that includes the missing file or command.

(28 May '12, 20:14) Gnonthgol ♦

Thank you very much!

(31 May '12, 19:28) TryOSM

Source code available on GitHub .