<div dir="ltr">Yes, anaconda is a python distribution. Unfortunate that those don't play nice.<div style>Confusion was indeed the problem. I deleted the /usr/local/lib/python2.7 folder and uninstalled the brew gdal. I reinstalled GDAL Complete 1.10 framework and was getting an import error:</div>

<div style><br></div><div><div>iMac:~ $ gdal_merge.py</div><div>Traceback (most recent call last):</div><div>  File "/Library/Frameworks/GDAL.framework/Programs/gdal_merge.py", line 36, in <module></div><div>

    import gdal</div><div>ImportError: No module named gdal</div><div>iMac:~ $ </div></div><div><br></div><div style>I tried the export PYTHONPATH=... but it didn't help until I removed anaconda from my path and now the function works. thanks a lot for your help.</div>

</div><div class="gmail_extra"><br clear="all"><div><div>Dominik Schneider</div><div><div>o 303.735.6296 | c 518.956.3978 </div><div><br></div></div></div>
<br><br><div class="gmail_quote">On Fri, Jul 5, 2013 at 4:13 PM, William Kyngesburye <span dir="ltr"><<a href="mailto:woklist@kyngchaos.com" target="_blank">woklist@kyngchaos.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Looks like a confused gdal and python installation mess...<br>
<br>
If you're using my GDAL framework, it uses my UnixImageIO framework for libpng.  And, the included gdal-python uses the system python.<br>
<br>
But according to the error python is looking for python modules (thus gdal-python) in /usr/local.  This implies that the system python is NOT running, but a custom install (is that what anaconda is?), with it's own python module search path.  I'm guessing that the anaconda python (?) is in /usr/local/bin and thus be found before the system python.<br>


<br>
PYTHONPATH might work to redirect your custom python to look for the correct gdal-python:<br>
<br>
  export PYTHON_PATH=/Library/Frameworks/GDAL.framework/Versions/1.10/Python/2.7/site-packages<br>
<br>
If not, you'll have to uninstall your custom python (anaconda? homebrew?) so it doesn't override the system python.<br>
<div><div class="h5"><br>
On Jul 5, 2013, at 2:39 PM, Dominik Schneider wrote:<br>
<br>
> anyone have any suggestions?! I'm at a complete loss how to troubleshoot.<br>
><br>
><br>
> Dominik Schneider<br>
> o <a href="tel:303.735.6296" value="+13037356296">303.735.6296</a> | c <a href="tel:518.956.3978" value="+15189563978">518.956.3978</a><br>
><br>
><br>
><br>
> On Tue, Jul 2, 2013 at 10:52 AM, Dominik Schneider <<a href="mailto:dominik.schneider@colorado.edu">dominik.schneider@colorado.edu</a>> wrote:<br>
> Hi,<br>
> I am trying to run:<br>
> gdal_merge.py -init -9999 -n 2001 -o MOD09GA.A2012001.h08v05.005.NRTsnow_fraction.tif.1 MOD09GA.A2012001.h08v05.005.NRTsnow_fraction.tif<br>
><br>
> The Error:<br>
> Traceback (most recent call last):<br>
>   File "/Library/Frameworks/GDAL.framework/Programs/gdal_merge.py", line 36, in <module><br>
>     import gdal<br>
>   File "/usr/local/lib/python2.7/site-packages/gdal.py", line 2, in <module><br>
>     from osgeo.gdal import deprecation_warn<br>
>   File "/usr/local/lib/python2.7/site-packages/osgeo/__init__.py", line 21, in <module><br>
>     _gdal = swig_import_helper()<br>
>   File "/usr/local/lib/python2.7/site-packages/osgeo/__init__.py", line 17, in swig_import_helper<br>
>     _mod = imp.load_module('_gdal', fp, pathname, description)<br>
> ImportError: dlopen(/usr/local/lib/python2.7/site-packages/osgeo/_gdal.so, 2): Library not loaded: libpng15.15.dylib<br>
>   Referenced from: /usr/local/Cellar/gdal/1.10.0/lib/libgdal.1.dylib<br>
>   Reason: image not found<br>
><br>
> Gdal is here:<br>
> > which gdal_merge.py<br>
> /Library/Frameworks/GDAL.framework/Programs/gdal_merge.py<br>
><br>
> I'm completely new gdal but am guessing i've got some confusion between different versions of gdal and python.  I have rgdal installed so at some point in the past I probably installed gdal too? Today I installed gdal with homebrew and also tried the binary from <a href="http://www.kyngchaos.com/software:frameworks" target="_blank">http://www.kyngchaos.com/software:frameworks</a><br>


> For python I have the system default (2.7) on osx.7.5 and the anaconda installation.<br>
><br>
> I should also say, if I load python I am unable to import gdal:<br>
> > python<br>
> Python 2.7.4 |Anaconda 1.5.1 (x86_64)| (default, May  9 2013, 12:12:00)<br>
> [GCC 4.0.1 (Apple Inc. build 5493)] on darwin<br>
> Type "help", "copyright", "credits" or "license" for more information.<br>
> >>> from osgeo import gdal<br>
> Traceback (most recent call last):<br>
>   File "<stdin>", line 1, in <module><br>
>   File "/usr/local/lib/python2.7/site-packages/osgeo/__init__.py", line 21, in <module><br>
>     _gdal = swig_import_helper()<br>
>   File "/usr/local/lib/python2.7/site-packages/osgeo/__init__.py", line 17, in swig_import_helper<br>
>     _mod = imp.load_module('_gdal', fp, pathname, description)<br>
> ImportError: dlopen(/usr/local/lib/python2.7/site-packages/osgeo/_gdal.so, 2): Library not loaded: libpng15.15.dylib<br>
>   Referenced from: /usr/local/Cellar/gdal/1.10.0/lib/libgdal.1.dylib<br>
>   Reason: image not found<br>
><br>
><br>
> any help would be appreciated.<br>
> Thanks<br>
><br>
</div></div>> _______________________________________________<br>
> gdal-dev mailing list<br>
> <a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
> <a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
<br>
-----<br>
William Kyngesburye <kyngchaos*at*kyngchaos*dot*com><br>
<a href="http://www.kyngchaos.com/" target="_blank">http://www.kyngchaos.com/</a><br>
<br>
All generalizations are dangerous, even this one.<br>
<br>
<br>
</blockquote></div><br></div>