]> git.openstreetmap.org Git - nominatim.git/commitdiff
require python 3 for all tools used in updates
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 28 Jul 2019 18:36:35 +0000 (20:36 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 28 Jul 2019 18:36:35 +0000 (20:36 +0200)
docs/admin/Import-and-Update.md
docs/admin/Installation.md
utils/check_server_for_updates.py
utils/osm_file_date.py

index 257e5ebcc5e591245a773554e59fcb4f859c1db3..923891a4fe728d8d9dd9b381a99f87f6ef58fc7b 100644 (file)
@@ -220,14 +220,14 @@ For a list of other methods see the output of `./utils/update.php --help`.
 
 #### Installing the newest version of Pyosmium
 
-It is recommended to install Pyosmium via pip. Run (as the same user who
-will later run the updates):
+It is recommended to install Pyosmium via pip. Make sure to use python3.
+Run (as the same user who will later run the updates):
 
 ```sh
-pip install --user osmium
+pip3 install --user osmium
 ```
 
-Nominatim needs a tool called `pyosmium-get-updates`, which comes with
+Nominatim needs a tool called `pyosmium-get-updates` which comes with
 Pyosmium. You need to tell Nominatim where to find it. Add the
 following line to your `settings/local.php`:
 
index 5b7f8173795934fcf98ceea84fe8b7b4051ed5d9..d07249276177c8413bc8dd48c584929ba6dd068a 100644 (file)
@@ -50,7 +50,7 @@ For running Nominatim:
 
 For running continuous updates:
 
-  * [pyosmium](https://osmcode.org/pyosmium/)
+  * [pyosmium](https://osmcode.org/pyosmium/) (with Python 3)
 
 ### Hardware
 
index 6e3beb83c3acb4f10aebb5b925b3d3783610f55c..05b69657bfc219076c97d98aa210e3c322d03c2d 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 import sys
 from osmium.replication import server
index 88d0a4c0a6a46a4acb185f06b1fc8d70897af224..b8c54a7cce5d4ddb01631e48b93126115ea502c6 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 import osmium
 import sys