<?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: ERROR 000824: The tool is not licensed. in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370261#M29282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;i've the same problem, I try to execute my script embebed &lt;BR /&gt;into Arcgis and it run perfectly, but when I try to run &lt;BR /&gt;*.py i receive this message ERROR 000824: The tool is not &lt;BR /&gt;licenced.&lt;BR /&gt; I included into my script this:&lt;BR /&gt;&lt;BR /&gt;import arcview&lt;BR /&gt;import arcpy&lt;BR /&gt;arcpy.CheckOutExtension("Spatial")&lt;BR /&gt;&lt;BR /&gt;I dont understand what is happening i'm so confused.&lt;BR /&gt;&lt;BR /&gt;Can you help me?&lt;BR /&gt;Thanks a lot.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Add this line making sure your session is running under ArcInfo license (spatial runs under ArcInfo license).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;os.environ['ESRI_SOFTWARE_CLASS']='Professional'&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jan 2012 16:34:41 GMT</pubDate>
    <dc:creator>HemingZhu</dc:creator>
    <dc:date>2012-01-06T16:34:41Z</dc:date>
    <item>
      <title>ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370253#M29274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am attempting to write a Python script for some geoprocessing I want to automate, but I have run into 2 problems so far:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) When accessing the arcpy.sa.ExtractByMask tool, it reports the following: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "D:\ESRI\ArcGIS\Desktop10.0\arcpy\arcpy\sa\Functions.py", line 6723, in ExtractByMask&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; in_mask_data)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "D:\ESRI\ArcGIS\Desktop10.0\arcpy\arcpy\sa\Utils.py", line 47, in swapper&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = wrapper(*args, **kwargs)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "D:\ESRI\ArcGIS\Desktop10.0\arcpy\arcpy\sa\Functions.py", line 6719, in wrapper&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; out_raster)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "D:\ESRI\ArcGIS\Desktop10.0\arcpy\arcpy\geoprocessing\_base.py", line 474, in &amp;lt;lambda&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return lambda *args: val(*gp_fixargs(args))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000824: The tool is not licensed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (ExtractByMask)."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do NOT get this error when I attempt to use the same tool in ArcMap. Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) This is a more minor thing, but when I print off the contents of lists, or any other kind of printed result, there is a "u" concatenated at the beginning (e.g. arcpy.CheckExtension("spatial") ---&amp;gt; u'Available')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this a problem? Is it related to my first problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sam&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 14:17:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370253#M29274</guid>
      <dc:creator>SamuelRobinson</dc:creator>
      <dc:date>2011-03-02T14:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370254#M29275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;PS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am running ArcGIS ArcInfo Desktop 10 Education Edition on Windows Vista.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;S.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 14:31:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370254#M29275</guid>
      <dc:creator>SamuelRobinson</dc:creator>
      <dc:date>2011-03-02T14:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370255#M29276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Figured it out... you need to use arcpy.CheckOutExtensions("Spatial") to activate the extension&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 20:17:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370255#M29276</guid>
      <dc:creator>SamuelRobinson</dc:creator>
      <dc:date>2011-03-02T20:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370256#M29277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The "u" just means the strings you are getting back are Unicode strings.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can safely ignore them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;&lt;BR /&gt;2) This is a more minor thing, but when I print off the contents of lists, or any other kind of printed result, there is a "u" concatenated at the beginning (e.g. arcpy.CheckExtension("spatial") ---&amp;gt; u'Available')&lt;BR /&gt;&lt;BR /&gt;Is this a problem? Is it related to my first problem?&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 13:46:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370256#M29277</guid>
      <dc:creator>MarkZollinger</dc:creator>
      <dc:date>2011-03-03T13:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370257#M29278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to convert a feature to raster file... The stand alone python script says there are no requirements for doing this however, when executing it says 00824 error and says that theres is a problem with the FeatureToClass license... I don't understand why this it says there are no requirements and then this error shows up... What can I do?? I have all extension properly installed and running...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need help please!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 03:16:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370257#M29278</guid>
      <dc:creator>JuanLopera</dc:creator>
      <dc:date>2011-04-07T03:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370258#M29279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i've the same problem, I try to execute my script embebed &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;into Arcgis and it run perfectly, but when I try to run &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*.py i receive this message ERROR 000824: The tool is not &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;licenced.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I included into my script this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcview&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CheckOutExtension("Spatial")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I dont understand what is happening i'm so confused.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you help me?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am trying to convert a feature to raster file... The stand alone python script says there are no requirements for doing this however, when executing it says 00824 error and says that theres is a problem with the FeatureToClass license... I don't understand why this it says there are no requirements and then this error shows up... What can I do?? I have all extension properly installed and running...&lt;BR /&gt;&lt;BR /&gt;I need help please!!!&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 20:42:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370258#M29279</guid>
      <dc:creator>AdrianaRojas</dc:creator>
      <dc:date>2011-06-22T20:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370259#M29280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, I've the very same problem...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, as Adriana, the script does check out all necessary extensions/product codes (however, the specific tool does not need any special product/extension).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The script runs smoothly within ArcGIS but not as a standalone python script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Luc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 21:21:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370259#M29280</guid>
      <dc:creator>LucianoCampagnolo</dc:creator>
      <dc:date>2011-07-21T21:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370260#M29281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I´ve got absolutely the same Problem as Lucc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried it on a different machine and it worked there fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So I´m thinking about the OS settings�?�. First I thought of the UAC (user access control, win7 professional) and disabled them but no change to the problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone solved this so far....?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or has anybody some new ideas? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Maac :confused:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 19:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370260#M29281</guid>
      <dc:creator>MarcGeörg</dc:creator>
      <dc:date>2011-12-29T19:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370261#M29282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;i've the same problem, I try to execute my script embebed &lt;BR /&gt;into Arcgis and it run perfectly, but when I try to run &lt;BR /&gt;*.py i receive this message ERROR 000824: The tool is not &lt;BR /&gt;licenced.&lt;BR /&gt; I included into my script this:&lt;BR /&gt;&lt;BR /&gt;import arcview&lt;BR /&gt;import arcpy&lt;BR /&gt;arcpy.CheckOutExtension("Spatial")&lt;BR /&gt;&lt;BR /&gt;I dont understand what is happening i'm so confused.&lt;BR /&gt;&lt;BR /&gt;Can you help me?&lt;BR /&gt;Thanks a lot.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Add this line making sure your session is running under ArcInfo license (spatial runs under ArcInfo license).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;os.environ['ESRI_SOFTWARE_CLASS']='Professional'&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 16:34:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370261#M29282</guid>
      <dc:creator>HemingZhu</dc:creator>
      <dc:date>2012-01-06T16:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370262#M29283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm having the same problem (same error anyway) as these other folks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried the above suggestion to add&amp;nbsp; os.environ['ESRI_SOFTWARE_CLASS'] = 'Professional' &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in the interactive window in PythonWin and it accepts that command but when I then try to enter&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.AggregatePolygons_arc("input", "output", 30, 50000)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I got ERROR 000824: The tool is not licensed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (AggregatePolygons).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We do have the ArcInfo License installed. I'm using version 10.0 with no service packs (waiting for 10.1 I suppose).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 15:30:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370262#M29283</guid>
      <dc:creator>JohnChurchill</dc:creator>
      <dc:date>2012-09-17T15:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370263#M29284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Much appreciated. Was having the same issue, this fixed the problem&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 22:23:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370263#M29284</guid>
      <dc:creator>ScottRobinson1</dc:creator>
      <dc:date>2014-01-26T22:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370264#M29285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;EDIT:&amp;nbsp; Moved post to &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/109715-Error-000824-Feature-to-Point?p=388281#post388281" rel="nofollow noopener noreferrer" target="_blank"&gt;separate forum&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcGIS for Desktop 10.2.1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also receiving this error...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# Import arcpy module
import arcpy
from arcpy import env
import os

# Overwrite pre-existing files
arcpy.env.overwriteOutput = True

os.environ['ESRI_SOFTWARE_CLASS']='Professional' #Added based on forum suggestion
arcpy.CheckOutExtension('Spatial') #Added based on forum suggestion

Input = "C:\\GIS_DATA\\FGDB.gdb\\InputPolygons"
Input_Layer = "Feature_Layer"
Output = "C:\\GIS_DATA\\FGDB.gdb\\OutputPoints"

try:
&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(Input, Input_Layer, "", "", "field alias VISIBLE NONE")
&amp;nbsp;&amp;nbsp; arcpy.FeatureToPoint_management(Input_Layer, Output, "CENTROID")

except:
&amp;nbsp;&amp;nbsp; print arcpy.GetMessages()
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Result:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Failed to execute. Parameters are not valid.
ERROR 000824: The tool is not licensed.
Failed to execute (FeatureToPoint).&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Never had this issue before...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:09:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370264#M29285</guid>
      <dc:creator>ChristopherBlinn1</dc:creator>
      <dc:date>2021-12-11T17:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 000824: The tool is not licensed.</title>
      <link>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370265#M29286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same problem, anyone with a solution ?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2016 15:32:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000824-the-tool-is-not-licensed/m-p/370265#M29286</guid>
      <dc:creator>STINGERSIG_EDF-DPI</dc:creator>
      <dc:date>2016-07-19T15:32:59Z</dc:date>
    </item>
  </channel>
</rss>

