Hi, I am trying to execute a python geoprocessing script in my unix environment. We have ArcGIS server 9.3 installed on Sun Solaris 9. Python was installed along with the server install. When i execute the script i get the following error.Traceback (most recent call last):File "GeocodeShops.py", line 8, in <module>import arcgisscriptingImportError: ld.so.1: python: fatal: libarcgisscripting_pluginstub.so: open failed: No such file or directory My Python script is simple.
# ---------------------------------------------------------------------------
# GeocodeShops.py
# Created on: Thu Dec 17 2009 04:23:29 PM
# (generated by ArcGIS/ModelBuilder)
# ---------------------------------------------------------------------------
# Import system modules
import arcgisscripting
# Create the Geoprocessor object
gp = arcgisscripting.create(9.3)
try :
gp.AddMessage("Started the Geocode Script for Shops.")
gp.AddMessage("Done geocoding addresses ........")
except:
print gp.GetMessages(2)
I printed the PYTHONPATH to check if bin was present. "/export/project/gisapp/arcgis93/arcgis/bin" is in the path. I also found that libarcgisscripting_pluginstub.so is in that folder. What could be causing this error? Thanks for you help