<?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: ArcMap with Python in 3D Cities / Campuses Questions</title>
    <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812205#M42</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not installed properly...​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Apr 2015 00:06:27 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2015-04-30T00:06:27Z</dc:date>
    <item>
      <title>ArcMap with Python</title>
      <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812201#M38</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't import the arcpy module from the Python window. It seems to be a problem with the numpy module. What can i do? I have ArcMap 10.2.2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 19:47:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812201#M38</guid>
      <dc:creator>MiguelHoyos</dc:creator>
      <dc:date>2015-04-29T19:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: ArcMap with Python</title>
      <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812202#M39</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens exactly when you type import arcpy from the Python window?&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 20:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812202#M39</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-04-29T20:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcMap with Python</title>
      <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812203#M40</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which Python window?&amp;nbsp; The IDE built into arcmap?&amp;nbsp; Pythonwin? PyScripter?&lt;/P&gt;&lt;P&gt;If it is something other than within ArcMap, then you need to import them explicitly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy
&amp;gt;&amp;gt;&amp;gt; import numpy&amp;nbsp; # if you want to use the namespace numpy&lt;/PRE&gt;&lt;P&gt;OR&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import numpy as np # the usual nickname for numpy​&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If neither of these work, your installation is broken and you will need to reinstall.&amp;nbsp; It is recommended that you let ArcMap install where it wants to.&amp;nbsp; Also, if you are not familiar with Python, it would be a good idea to uninstall any previous installations that exist on disk, then install ArcMap and reinstall other installations if you know how to work with Python paths etc.&amp;nbsp; Fixing a Python install can be done, but I don't recommend it. Running a different version on a separate machine is cheaper if you include debug time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:33:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812203#M40</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T09:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: ArcMap with Python</title>
      <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812204#M41</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy&lt;/P&gt;&lt;P&gt;Runtime error &lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\__init__.py", line 24, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from arcpy.toolbox import *&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\toolbox.py", line 356, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from management import Graph, GraphTemplate&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\management.py", line 22, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import _management&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\_management.py", line 14, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import _graph&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\_graph.py", line 27, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import numpy&lt;/P&gt;&lt;P&gt;ImportError: No module named numpy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 23:55:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812204#M41</guid>
      <dc:creator>MiguelHoyos</dc:creator>
      <dc:date>2015-04-29T23:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: ArcMap with Python</title>
      <link>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812205#M42</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not installed properly...​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2015 00:06:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-cities-campuses-questions/arcmap-with-python/m-p/812205#M42</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-30T00:06:27Z</dc:date>
    </item>
  </channel>
</rss>

