summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorDaniel Hepper <daniel.hepper@epicco.de>2019-05-17 16:23:08 +0200
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-05-17 16:24:43 +0200
commit0aca34fc83c72c55a57ea362a3e77ed4405a0162 (patch)
treeea5804837ca597b33be499cdac93a10861b003e7 /docs/ref
parent85b698449f8d79ebd086c0d6fae58964ed765c55 (diff)
[2.2.x] Fixed #25633 -- Updated macOS Spatialite installation instructions.
Updated the Spatialite installation instruction to refer to the latest available version from KyngChaos, as Gaia-SINS does not provide MacOS binaries anymore. Backport of ccb7f7c6d237900614290085cca103d9509b89b9 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/gis/install/spatialite.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/ref/contrib/gis/install/spatialite.txt b/docs/ref/contrib/gis/install/spatialite.txt
index b7a5804928..494a2caff7 100644
--- a/docs/ref/contrib/gis/install/spatialite.txt
+++ b/docs/ref/contrib/gis/install/spatialite.txt
@@ -97,12 +97,12 @@ First, follow the instructions in the :ref:`kyngchaos` section.
When creating a SpatiaLite database, the ``spatialite`` program is required.
However, instead of attempting to compile the SpatiaLite tools from source,
-download the `SpatiaLite Binaries`__ for macOS, and install ``spatialite`` in a
-location available in your ``PATH``. For example::
+download the `SpatiaLite Tools`__ package for macOS, and install ``spatialite``
+in a location available in your ``PATH``. For example::
- $ curl -O https://www.gaia-gis.it/spatialite/spatialite-tools-osx-x86-2.3.1.tar.gz
- $ tar xzf spatialite-tools-osx-x86-2.3.1.tar.gz
- $ cd spatialite-tools-osx-x86-2.3.1/bin
+ $ curl -O https://www.kyngchaos.com/files/software/frameworks/Spatialite_Tools-4.3.zip
+ $ unzip Spatialite_Tools-4.3.zip
+ $ cd Spatialite\ Tools/tools
$ sudo cp spatialite /Library/Frameworks/SQLite3.framework/Programs
Finally, for GeoDjango to be able to find the KyngChaos SpatiaLite library,
@@ -110,7 +110,7 @@ add the following to your ``settings.py``::
SPATIALITE_LIBRARY_PATH='/Library/Frameworks/SQLite3.framework/SQLite3'
-__ https://www.gaia-gis.it/spatialite-2.3.1/binaries.html
+__ https://www.kyngchaos.com/software/frameworks/
Homebrew
--------