<div dir="ltr">Hi everyone,<br><br>I&#39;m getting a new machine setup and have hit a snag with the GDAL installation.&nbsp; I&#39;ve installed GDAL from source onto a CentOS box using the gdal-1.5.2.tar.gz file, and with the following parameters:<br>
<br>$ sudo ./configure --prefix=/export --with-pg=/export/bin/pg_config --with-python<br>$ make<br>$ make install<br>$ which gdalinfo<br>&nbsp;&nbsp;&nbsp; /export/bin/gdalinfo<br>--&gt; Good!<br><br>The problem comes when I try to import the osgeo module in Python.<br>
<br>$ python<br>Python 2.3.4 (#1, Dec 11 2007, 05:28:55)<br>[GCC 3.4.6 20060404 (Red Hat 3.4.6-9)] on linux2<br>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;&gt;&gt; from osgeo import gdal<br>Traceback (most recent call last):<br>&nbsp; File &quot;&lt;stdin&gt;&quot;, line 1, in ?<br>ImportError: No module named osgeo<br>--&gt; Not good.<br><br>Looking back through the make output, I see that the osgeo modules are being created and copied:<br>
&nbsp;&nbsp;&nbsp; copying build/lib.linux-x86_64-2.3/osgeo/gdal.py -&gt; /export/lib64/python2.3/site-packages/osgeo<br><br>So I tried appending the location to the sys.path in Python to make the modules available, but am only partially succesful with that:<br>
[root@randre-linux ~]# python<br>Python 2.3.4 (#1, Dec 11 2007, 05:28:55)<br>[GCC 3.4.6 20060404 (Red Hat 3.4.6-9)] on linux2<br>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;&gt;&gt; import sys<br>&gt;&gt;&gt; sys.path.append(&#39;/export/lib64/python2.3/site-packages/&#39;)<br>&gt;&gt;&gt; import osgeo<br>--&gt; Good!<br><br>&gt;&gt;&gt; from osgeo import gdal<br>Traceback (most recent call last):<br>
&nbsp; File &quot;&lt;stdin&gt;&quot;, line 1, in ?<br>&nbsp; File &quot;/export/lib64/python2.3/site-packages/osgeo/gdal.py&quot;, line 7, in ?<br>&nbsp;&nbsp;&nbsp; import _gdal<br>ImportError: libgdal.so.1: cannot open shared object file: No such file or directory<br>
--&gt; Not good.<br><br>So I&#39;m guessing that my gdal libs aren&#39;t accessible for some reason, but I&#39;m just guessing.&nbsp; Is there a way that I can fix this at the ./configure stage? <br><br>Thanks,<br><br>Roger<br>
--<br></div>