I have a Python script where I want to use the GDAL Python bindings.
Is it possible that I set the path to the bindings inside the script? Will that actually reflect the Python path?
For instance like this?
GDAL_LIBRARY_PATH = '/home/user123/lib/libgdal.so'
import gdal
print gdal.VersionInfo()