<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Python Script Error in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595535#M46631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James,&lt;BR /&gt;&lt;BR /&gt;The error indicates you are running the python script out of process. Could you try checking on the property of the script tool to run the Python script in process. I don't see anything that stands out for why it would fail out of process but this would be worth a try.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Had similar error where checking the property of the script tool to run the Python script in process solved the problem. Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2012 16:49:24 GMT</pubDate>
    <dc:creator>DallasShearer</dc:creator>
    <dc:date>2012-05-03T16:49:24Z</dc:date>
    <item>
      <title>Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595525#M46621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Whenever i try to run a simple python script i get this error &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000714: Error in script vt17.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Error in executing: cmd.exe /C I:\GIS\......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can run a script from the python command window and from IDLE but when i add GetParameterAsText or try to run anything from toolbox i get that error&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;here is the simple buffer script:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import os&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from arcpy inport env&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = I:\GIS&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.SetProduct("ArcEditor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shape = arcpy.GetParameterAsText(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;output = arcpy.GetParameterAsTest(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.Buffer_analysis(shape, output, "1000 Feet", "", "", "", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any ideas? I installed the Win32 updates and tried it a million different ways. Please help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 03:27:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595525#M46621</guid>
      <dc:creator>jamesborris</dc:creator>
      <dc:date>2011-02-03T03:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595526#M46622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You have a typo on line 3. Is that in your script? I think your path has to be in double quotes too.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 03:44:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595526#M46622</guid>
      <dc:creator>MichaelStead</dc:creator>
      <dc:date>2011-02-03T03:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595527#M46623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import os&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from arcpy import env&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = "I:\GIS"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.SetProduct("ArcEditor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shape = "I:/GIS/RPMScript/Shapes/shape.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.Buffer_analysis(shape, "I:/GIS/RPMScript2", "1000 Feet", "", "", "", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this script will work in the python command line in ArcMap why do I get that cmd error when i try and run it in toolbox? I am using the python that came with the Arc10 release.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 12:42:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595527#M46623</guid>
      <dc:creator>jamesborris</dc:creator>
      <dc:date>2011-02-03T12:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595528#M46624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The error indicates you are running the python script out of process. Could you try checking on the property of the script tool to run the Python script in process. I don't see anything that stands out for why it would fail out of process but this would be worth a try.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 14:57:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595528#M46624</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2011-02-03T14:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595529#M46625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;it is running in process. still not working. same error.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 23:24:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595529#M46625</guid>
      <dc:creator>jamesborris</dc:creator>
      <dc:date>2011-02-10T23:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595530#M46626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi James,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At this point I would encourage you to &lt;/SPAN&gt;&lt;A href="http://support.esri.com/en/"&gt;contact Technical Support&lt;/A&gt;&lt;SPAN&gt; for this issue. They will have the resources and knowledge to appropriately assist you in this matter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 15:56:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595530#M46626</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2011-02-11T15:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595531#M46627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your going to want to change this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;env.workspace = "I:\GIS"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;env.workspace = "I:/GIS"&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 16:50:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595531#M46627</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2011-02-11T16:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595532#M46628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;output = arcpy.GetParameterAsTest(1)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;spelling errror here as well...&amp;nbsp; should be&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;output = arcpy.GetParameterAsText(1)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 17:55:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595532#M46628</guid>
      <dc:creator>EdEngle</dc:creator>
      <dc:date>2011-02-16T17:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595533#M46629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Grief...good catch...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 18:00:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595533#M46629</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2011-02-16T18:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595534#M46630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Reminds me of one of those "Spot the Differences" cartoons. Maybe use a python editor that marks up syntax to catch some of those. Should make indenting and brackets and such easier too.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 23:19:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595534#M46630</guid>
      <dc:creator>MichaelStead</dc:creator>
      <dc:date>2011-02-16T23:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595535#M46631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;James,&lt;BR /&gt;&lt;BR /&gt;The error indicates you are running the python script out of process. Could you try checking on the property of the script tool to run the Python script in process. I don't see anything that stands out for why it would fail out of process but this would be worth a try.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Had similar error where checking the property of the script tool to run the Python script in process solved the problem. Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 16:49:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595535#M46631</guid>
      <dc:creator>DallasShearer</dc:creator>
      <dc:date>2012-05-03T16:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script Error</title>
      <link>https://community.esri.com/t5/python-questions/python-script-error/m-p/595536#M46632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all, I know it is an old thread, but might be useful anyway. After spending a whole afternoon checking my script I found out there was a very simple answer, error 000714 was not a script error, but a file extension issue. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After finishing your script, be sure to save it with .py extension, then your tool in arcgis will work fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 09:02:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-script-error/m-p/595536#M46632</guid>
      <dc:creator>dariomasante</dc:creator>
      <dc:date>2013-04-23T09:02:41Z</dc:date>
    </item>
  </channel>
</rss>

