back to main page

Installing spatialite-2.2 on Linux

spatialite-2.2 is a SQLite's extension, and includes in itself four further SQLite's extensions: the RTree, the MbrCache, the VirtualShape and the VirtualText ones.
There are various alternative ways you can follow at your choice to deploy and use them:
  1. the spatialite executable way:
  2. the sqlite3 way:
  3. the GUI tool way:

Managing shared libraries

On Linux systems, shared libraries are identified by a .so suffix
Usually they have a plain name i.e. somelib.so, but usually they supports a version name as well, i.e. somelib.so.1.0
Usually this is accomplished simply by creating a symbolic link, as in:

$ ln -s somelib.so.1.0 somelib.so

Usually shared libraries must be placed in the /usr/lib directory

You can as well keep yours shared libraries in any other directory at your choice, but in this case you have to set en environment variable, as in:

$ LD_LIBRARY_PATH=/home/user_name/my_preferred_so_dir
$ export LD_LIBRARY_PATH


back to main page