<?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: Help performing these steps &amp;gt;Sample &amp;gt;Display XY Data &amp;gt;Export Attribute Table in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666948#M51809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgive me Freddie - revealing my inexperience -&amp;nbsp; I tried opening a python command window and typed: python get-pip.py.&amp;nbsp; I'm SURE this is wrong...mostly because of the syntax errors.&amp;nbsp;&amp;nbsp; haha&amp;nbsp;&amp;nbsp; See post edit above.&amp;nbsp; Not sure where to enter this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Dec 2015 18:16:42 GMT</pubDate>
    <dc:creator>DannyLackey</dc:creator>
    <dc:date>2015-12-16T18:16:42Z</dc:date>
    <item>
      <title>Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666939#M51800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a manual process I'm trying to automate.&amp;nbsp; My question is mostly related to step 2, but I welcome any suggestion for any of the process I've described that may help me achieve my goal.&amp;nbsp; Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first part is dumping raster data:&amp;nbsp; Spatial Analyst Tools &amp;gt; Extraction &amp;gt; Sample &amp;gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Step 1)&lt;/STRONG&gt; I've been able to do this piece with the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
from arcpy.sa import *
# Set environment settings
env.workspace = r"c:\InputRasters"
# Set local variables
inRasters = ["b_inst"]
locations = r"c:\Grids\50ft_Grid.shp"
outTable = r"c:\TestTable"
sampMethod = "NEAREST"
# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")
# Execute Sample
Sample(inRasters, locations, outTable, sampMethod)
Environments&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Step 2)&lt;/STRONG&gt; Now I need to Display the XY data and export attribute table to either a dbf or Excel spreadsheet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This piece of code seems to be what I need, but it seems to require a .dbf file.&amp;nbsp; The script from the previous step didn't output a .dbf, it output a folder called "info" containing the following files: arc.dir (1 kb), arc0000.dat (7,022 kb), arc0000.nit (1 kb), and arc0000.xml (1 kb). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000006z000000" title="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000006z000000" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000006z000000&lt;/A&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Step 3)&lt;/STRONG&gt; Finally, I'm thinking I can use this technique to dump the resulting dbf to .xls&lt;/P&gt;&lt;P&gt;&lt;A href="http://gis.stackexchange.com/questions/25125/saving-dbf-as-xls-using-python" title="http://gis.stackexchange.com/questions/25125/saving-dbf-as-xls-using-python" rel="nofollow noopener noreferrer" target="_blank"&gt;arcgis desktop - Saving *.dbf as *.xls using Python? - Geographic Information Systems Stack Exchange&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:11:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666939#M51800</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2021-12-12T04:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666940#M51801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to specify the extension to the out_table parameter when calling the sample tool to create a dbf output. After that you'd need to call the following tool:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Make XY Event Layer &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/make-xy-event-layer.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/make-xy-event-layer.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/make-xy-event-layer.htm&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table to Excel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/table-to-excel.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/table-to-excel.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/table-to-excel.htm&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My only question is why are you needing to create the xy data if you're going to export it to a table, which is essentially going to remove the geometry. Could you not just call the Table to Excel tool directly with the output table of the Sample tool?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Dec 2015 23:22:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666940#M51801</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-15T23:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666941#M51802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You were totally right on the first step.&amp;nbsp; Adding the .dbf extension made all of the difference.&amp;nbsp; If I'm understanding your question correctly, my response is that these steps are what's done manually, so I am trying to duplicate the process.&amp;nbsp; I believe the XY data is actually needed and step 2 is necessary to get it, isn't it?&amp;nbsp; Unfortunately, this isn't my process and I know almost nothing about ArcGIS, but I do know that the final Excel spreadsheet consists of an X column, a Y column, and a "Value" column, which I believe represents the points from the 50 ft grid.&amp;nbsp; I'm guessing I do not need to preserve the geometry.&amp;nbsp; However, I'm fine attempting to bypass step 2 and try your suggestion - too much data is better than not enough.&amp;nbsp; So, my question now is, the Table to Excel script seems to require a gdb, but it sounds like you are suggesting I can go directly from my .dbf to an .xls file.&amp;nbsp; I tried this, but it fails.&amp;nbsp; Do you see where I'm going wrong?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #303030;"&gt;import arcpy&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;# Set environment settings&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;arcpy.env.workspace = r"C:\"&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;# Set local variables&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;in_table = "TestTable.dbf\TestTable"&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;out_xls = "test.xls"&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;# Execute TableToExcel&lt;/SPAN&gt;
&lt;SPAN style="color: #303030;"&gt;arcpy.TableToExcel_conversion(in_table, out_xls)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp; File "c:\Table2XLS.py", line 8, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.TableToExcel_conversion(in_table, out_xls)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;AttributeError: 'module' object has no attribute 'TableToExcel_conversion'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:11:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666941#M51802</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2021-12-12T04:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666942#M51803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the path to your input table is invalid. A dbf table will not have a sub-table. TestTable.dbf should be the name of your table and not TestTable.dbf\TestTable. Also, what version of the software are you using. I don't believe that the TableToExcel tool is available until 10.2.X or higher.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 16:29:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666942#M51803</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-16T16:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666943#M51804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I originally tried just "TestTable.dbf" which resulted in the same error.&amp;nbsp; I am on 10.1.&amp;nbsp; Sounds like that is the problem.&amp;nbsp; Is there an alternate method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 16:40:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666943#M51804</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T16:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666944#M51805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This tool would not be available at 10.1. Your options would be to either install the needed python libraries on your 10.1 machine and use them in conjunction with cursors to build the excel table or you could export the table to a csv file and load it into excel from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;xlwt&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://pypi.python.org/pypi/xlwt" title="https://pypi.python.org/pypi/xlwt"&gt;https://pypi.python.org/pypi/xlwt&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise you'd need to upgrade to gain access to the TableToExcel tool.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 16:44:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666944#M51805</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-16T16:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666945#M51806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked the link you provided.&amp;nbsp; I'm not familiar with virtualenv.&amp;nbsp; Not clear how I access this in order to input the command "pip install xlwt".&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 17:38:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666945#M51806</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T17:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666946#M51807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reading about virtualenv: &lt;A href="http://docs.python-guide.org/en/latest/dev/virtualenvs/" title="http://docs.python-guide.org/en/latest/dev/virtualenvs/"&gt;Virtual Environments — The Hitchhiker's Guide to Python&lt;/A&gt; .&amp;nbsp; It says to install virtualenv, I use this command: &lt;SPAN class="gp"&gt;$&lt;/SPAN&gt; pip install virtualenv,&amp;nbsp; but I have no clue where to run this - windows command prompt?&amp;nbsp; powershell?&amp;nbsp; python command window?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 17:45:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666946#M51807</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T17:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666947#M51808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll need to install pip against your 2.6 install to execute the command. You should be able to install Pip with the instructions on the following page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://pip.pypa.io/en/stable/installing/#install-pip" title="https://pip.pypa.io/en/stable/installing/#install-pip"&gt;https://pip.pypa.io/en/stable/installing/#install-pip&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get pip installed you'd be able to use it to install xlwt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 17:45:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666947#M51808</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-16T17:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666948#M51809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgive me Freddie - revealing my inexperience -&amp;nbsp; I tried opening a python command window and typed: python get-pip.py.&amp;nbsp; I'm SURE this is wrong...mostly because of the syntax errors.&amp;nbsp;&amp;nbsp; haha&amp;nbsp;&amp;nbsp; See post edit above.&amp;nbsp; Not sure where to enter this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 18:16:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666948#M51809</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T18:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666949#M51810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it be possible for you to upgrade to a version of the software that has the tool you're needing to leverage? Writing your own tool in this case is going to be a rather involved process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 18:36:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666949#M51810</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-16T18:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666950#M51811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm comfortable writing python, but there are some aspects that just haven't come up for me yet...this is one of them.&amp;nbsp; What do I need in order to run these commands?&amp;nbsp; Chances are, it will require an admin to install.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 20:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666950#M51811</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T20:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666951#M51812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd like to keep it all in the same tool, but for now, I just wrote it in vb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Const xlXLSX = 51
'Open Excel and load dbf
Set objExcel = CreateObject("Excel.Application")
objExcel.DisplayAlerts = FALSE
objExcel.Visible = FALSE
Set objWorkbook = objExcel.Workbooks.Open("C:\TestTable.dbf")
'Save as xlsx and close workbook
objWorkbook.SaveAs "C:\test.xlsx", xlXLSX
objWorkbook.Close
'Close Excel and quit
objExcel.Quit&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:11:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666951#M51812</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2021-12-12T04:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666952#M51813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The steps on the following page are probably the easiest way to install pip other than upgrading python to 2.7.10, which comes with pip by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows/11311788#11311788" title="http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows/11311788#11311788"&gt;http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows/11311788#11311788&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've included a one minute video that shows how I leveraged the installers on the above page to install pip and then use it to install xlwt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 22:16:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666952#M51813</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-12-16T22:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help performing these steps &gt;Sample &gt;Display XY Data &gt;Export Attribute Table</title>
      <link>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666953#M51814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&amp;nbsp; I'll check these out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 22:50:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-performing-these-steps-gt-sample-gt-display/m-p/666953#M51814</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2015-12-16T22:50:16Z</dc:date>
    </item>
  </channel>
</rss>

