I am finding ArcMap runs slower, if you have written a script, which imports arcpy.
You may wish to write a script that can be operated in ArcMap, through the python window, or as a standalone python script. If so, you'll have to import arcpy. However, if you do this and run it in the python window, it will run slower.
2 Answers 2
I have put this code into my script and it runs much quicker:
try:
arcpy
except NameError:
import arcpy
This is saving considerable time in our scripts in ArcMap now.
This may all change in SP2, but none the less...
ArcGIS needs to spin up the runtime (that means loading a fairly sizable number of DLLs) when a process first loads the ArcObjects runtime. It's the same as the time going from the splash dialog in ArcMap to the ArcMap window or the time it takes to spin up an ArcGIS Engine process. In ArcMap the DLLs are already loaded for you so this process has already been done for you.