<?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 Python Path Confusion in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527832#M41341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Having some issues with Python paths in 10.1. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using a VM someone else at work set up. It's running Win Sever 2008 R2 and it has both ArcGIS Desktop 10.1 and Server 10.1 installed (I'm guessing this is part of the problem). I didn't perform the installation so I don't know the procedure which led to this mess.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There appear to be 3 (!) installs of Python on the system. One in C:\Python27, one in C:\Python27\ArcGIS10.1, and one in C:\Python27\ArcGISx6410.1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My main issue is in Desktop, I can't use any Python functions, because whenever I try to import arcpy, it can't find numpy. Specifically, typing from the Python command window:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="plain"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy Runtime error&amp;nbsp; File &amp;lt;string&amp;gt;, line 1, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\__init__.py, line 20, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\toolbox.py, line 347, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\management.py, line 22, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\_management.py, line 14, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\_graph.py, line 27, in &amp;lt;module&amp;gt; &amp;lt;type 'exceptions.ImportError'&amp;gt;: No module named numpy&lt;/PRE&gt;&lt;DIV style="display: none;"&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I get the same error pop up as a parameter error on the 1st parameter when opening any of the Python tools in the Spatial Statistics toolbox. I guess this is something to do with the validation calling import arcpy.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;numpy is in the C:\Python27\ArcGISx6410.1\lib\site-packages and the C:\Python27\ArcGIS10.1 folders but not C:\Python27\lib\site-packages.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath is set to C:\Python27\ArcGISx6410.1\. HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\PythonPath is set to C:\Python27\ArcGISx6410.1\Lib;C:\Python27\ArcGISx6410.1\DLLs;C:\Python27\ArcGISx6410.1\Lib\lib-tk. So everything should be in order there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, ArcMap is starting Python from C:\Python27 directly. I get the following from the Python command line in ArcMap:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="plain"&gt;&amp;gt;&amp;gt;&amp;gt; import sys &amp;gt;&amp;gt;&amp;gt; sys.path [ 'C:\\Windows\\system32\\python27.zip', u'c:\\program files (x86)\\arcgis\\desktop10.1\\arcpy', 'C:\\Python27\\Lib', 'C:\\Python27\\DLLs', 'C:\\Python27\\Lib\\lib-tk', 'c:\\program files (x86)\\arcgis\\desktop10.1\\ArcToolbox\\Toolboxes',&amp;nbsp; 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.1\\bin', 'C:\\Python27', 'C:\\Python27\\lib\\site-packages' ]&lt;/PRE&gt;&lt;DIV style="display: none;"&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(Bonus question: What's the 'C:\\Windows\\system32\\python27.zip' doing there?)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I start IDLE from the "Python 2.7" folder in the start menu, it can't import numpy either and the path is the same as above. If I start IDLE from the ArcGIS\Python 2.7 folder it can see and import arcpy (and numpy, and matplotlib).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I enter "Python" at the Windows command prompt I get the C:\Python27 one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can think of a few solutions but want to know a) how this would have happened, b) why ArcMap is starting Python from C:\Python27 instead of the Python InstallPath in the registry, and c) if I can get rid of one or two of these extra, confusing Python installs, or if not, ensure that Windows will always look at the same installs when installing modules etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks all.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Sep 2011 23:59:53 GMT</pubDate>
    <dc:creator>ThomMackey</dc:creator>
    <dc:date>2011-09-22T23:59:53Z</dc:date>
    <item>
      <title>Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527832#M41341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Having some issues with Python paths in 10.1. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using a VM someone else at work set up. It's running Win Sever 2008 R2 and it has both ArcGIS Desktop 10.1 and Server 10.1 installed (I'm guessing this is part of the problem). I didn't perform the installation so I don't know the procedure which led to this mess.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There appear to be 3 (!) installs of Python on the system. One in C:\Python27, one in C:\Python27\ArcGIS10.1, and one in C:\Python27\ArcGISx6410.1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My main issue is in Desktop, I can't use any Python functions, because whenever I try to import arcpy, it can't find numpy. Specifically, typing from the Python command window:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="plain"&gt;&amp;gt;&amp;gt;&amp;gt; import arcpy Runtime error&amp;nbsp; File &amp;lt;string&amp;gt;, line 1, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\__init__.py, line 20, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\toolbox.py, line 347, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\management.py, line 22, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\_management.py, line 14, in &amp;lt;module&amp;gt; File c:\program files (x86)\arcgis\desktop10.1\arcpy\arcpy\_graph.py, line 27, in &amp;lt;module&amp;gt; &amp;lt;type 'exceptions.ImportError'&amp;gt;: No module named numpy&lt;/PRE&gt;&lt;DIV style="display: none;"&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I get the same error pop up as a parameter error on the 1st parameter when opening any of the Python tools in the Spatial Statistics toolbox. I guess this is something to do with the validation calling import arcpy.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;numpy is in the C:\Python27\ArcGISx6410.1\lib\site-packages and the C:\Python27\ArcGIS10.1 folders but not C:\Python27\lib\site-packages.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath is set to C:\Python27\ArcGISx6410.1\. HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\PythonPath is set to C:\Python27\ArcGISx6410.1\Lib;C:\Python27\ArcGISx6410.1\DLLs;C:\Python27\ArcGISx6410.1\Lib\lib-tk. So everything should be in order there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, ArcMap is starting Python from C:\Python27 directly. I get the following from the Python command line in ArcMap:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="plain"&gt;&amp;gt;&amp;gt;&amp;gt; import sys &amp;gt;&amp;gt;&amp;gt; sys.path [ 'C:\\Windows\\system32\\python27.zip', u'c:\\program files (x86)\\arcgis\\desktop10.1\\arcpy', 'C:\\Python27\\Lib', 'C:\\Python27\\DLLs', 'C:\\Python27\\Lib\\lib-tk', 'c:\\program files (x86)\\arcgis\\desktop10.1\\ArcToolbox\\Toolboxes',&amp;nbsp; 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.1\\bin', 'C:\\Python27', 'C:\\Python27\\lib\\site-packages' ]&lt;/PRE&gt;&lt;DIV style="display: none;"&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(Bonus question: What's the 'C:\\Windows\\system32\\python27.zip' doing there?)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I start IDLE from the "Python 2.7" folder in the start menu, it can't import numpy either and the path is the same as above. If I start IDLE from the ArcGIS\Python 2.7 folder it can see and import arcpy (and numpy, and matplotlib).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I enter "Python" at the Windows command prompt I get the C:\Python27 one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can think of a few solutions but want to know a) how this would have happened, b) why ArcMap is starting Python from C:\Python27 instead of the Python InstallPath in the registry, and c) if I can get rid of one or two of these extra, confusing Python installs, or if not, ensure that Windows will always look at the same installs when installing modules etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks all.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2011 23:59:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527832#M41341</guid>
      <dc:creator>ThomMackey</dc:creator>
      <dc:date>2011-09-22T23:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527833#M41342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am having the same problem has anyone identified how to solve the problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sarah&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2012 16:27:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527833#M41342</guid>
      <dc:creator>SarahWilliams</dc:creator>
      <dc:date>2012-10-14T16:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527834#M41343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sarah,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am glad to see that the recommendation to uninstall the other version of python and then repair ArcMap worked to get the process working again.&amp;nbsp; Thanks for calling Esri Support.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 15:35:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527834#M41343</guid>
      <dc:creator>JeffreySwain</dc:creator>
      <dc:date>2012-10-15T15:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527835#M41344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;There appear to be 3 (!) installs of Python on the system. One in C:\Python27, one in C:\Python27\ArcGIS10.1, and one in C:\Python27\ArcGISx6410.1.&lt;P&gt;&lt;/P&gt;My main issue is in Desktop, I can't use any Python functions, because whenever I try to import arcpy, it can't find numpy. &lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Python27/ArcGIS10.1 installed with Desktop, the Python27/ArcGISx6410.1 is installed with either Desktop x64 background GP, or ArcGIS Server. I don't know how the third one got installed. I'm guessing last, because Windows is clearly set up to have that Python in the path. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sounds to me like the best approach is to uninstall the python installed in C:\Python27. (It will be in Add/Remove Programs) Then do a repair install of Desktop and Workstation (from add/remove programs). (Note, cross post to &lt;A href="https://community.esri.com/groups/arcgis-for-desktop-installation-support?sr=search&amp;amp;searchId=9e9fd9be-e541-4f8f-a0c7-fa7183d43b18&amp;amp;searchIndex=0"&gt;https://community.esri.com/groups/arcgis-for-desktop-installation-support?sr=search&amp;amp;searchId=9e9fd9be-e541-4f8f-a0c7-fa7183d43b18&amp;amp;searchIndex=0&lt;/A&gt;‌&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;(Bonus question: What's the 'C:\\Windows\\system32\\python27.zip' doing there?)&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is a deprecated path from the early days of Python before the current setup (startup scripts, PYTHONPATH, site-packages) was implemented for startup.. You can safely ignore it.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2012 22:34:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527835#M41344</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-10-15T22:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527836#M41345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If ArcGIS Desktop and ArcGIS Server are installing their own instance, I wouldn't question a third install which probably came first - a standard desktop python installation in c:\python27!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue has been why does ArcGIS need its own installation of python when - in my case - I have a perfectly good, functioning, and important installation already that uses pypyodbc and psycopg2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now that I install ArcGIS Desktop, in any configuration of installation directories I can think of, the sys.path variables all get set to the ArcGIS paths - what happened to my existing installation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue I'm having is to reset - or at least append to include - the paths to my existing installation so I can run arcpy and pypyodbc and psycopg2 scripts on the same machine - but this seems impossible!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sys.path.append('path to existing libraries') does not appear to do anything, and other threads on other forums don't help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel like I'm caught in a 'ArcCatch22'... and I'd hate to think I would have to set up another machine just to run arcpy scripts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:24:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527836#M41345</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2016-06-16T19:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527837#M41346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's all about module compatibility. If you install Python 2.7.x (use the right version of course) before you install ArcGIS Desktop, the installer will recognize and use that Python.&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/get-started/installation-guide/python-requirement.htm" title="http://desktop.arcgis.com/en/arcmap/latest/get-started/installation-guide/python-requirement.htm"&gt;Python, NumPy, and MatPlotlib—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ArcGIS Python stack isn't that big so I like just using Esri's to ensure module compatibility so their tools won't break.&lt;/P&gt;&lt;P&gt;For help with getting another Python to use arcpy and arcpy to use modules in a second (or third) Python install (ie Anaconda) see: &lt;A href="https://community.esri.com/migration-blogpost/55540"&gt;Using a user-specific Python startup script&lt;/A&gt;​ and &lt;A href="https://community.esri.com/migration-blogpost/55511"&gt;Connecting Arcpy to Your Jupyter Notebook&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Python workflows sometimes require many installs of python to support workflows that require certain versions of modules (like arcpy). This is the problem that packages like Anaconda and Enthought seek to solve by setting up multiple virtual environments you can choose from depending on your needs. As Python develops further we all hope this will get less difficult -- and it is especially difficult on Windows, which lacks some of the tool (soft links for example) that make this problem easier to solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A full install of ArcGIS Desktop includes three Pythons &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/alert.png" /&gt;&lt;/P&gt;&lt;P&gt;1) 2.7 x32 (Desktop) C;\Python\ArcGIS10.x&lt;/P&gt;&lt;P&gt;2) 2.7x64 (x64 Background geoprocessing)&amp;nbsp; C:\Python27\ArcGISx6410.x\&lt;/P&gt;&lt;P&gt;3) 3.4 x64 (Pro). (C:\Python34) (optional)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcGIS Pro 3.4 has an embedded Python inside it you can't mess with and an optional install of Python 3.4 if you want to do 3.4 development. This is actually cleaner than the Desktop setup because Esri's tools can use their own Python environment that isn't exposed to you to mess up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am told Pro 1.3 will include an install of Anaconda, which is great news. This would allow you to create custom environments so non-elevated users could easily set up virtual environments and add them to the sys.path for all three ArcGIS modules. Can't wait to see that at EsriUC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:25:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527837#M41346</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-06-22T16:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527838#M41347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any thoughts on this issue with ArcGIS 10.4(.1) as it relates to your post above? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.esri.com/technical-article/000012670" title="http://support.esri.com/technical-article/000012670"&gt;Problem: ArcMap crashes during Loading Document launch stage&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 16:44:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527838#M41347</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2016-06-24T16:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527839#M41348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For most folks, the issue you reference results from a known issue with some changes in Python's registry setup with 2.7.11, that Esri could not anticipate. One of their workarounds is to remove that Python version and do a repair install which will reinstall Esri's shipped Python.&amp;nbsp; I thought they fixed this at 10.4. Bummer, but fortunately it's an easy registry fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's an example of the danger of using some other Python than the stack Esri ships -- I strongly believe than unless you really have a need, you should work with the Python versions that Esri provides with that version of ArcGIS.&lt;/P&gt;&lt;P&gt;It's also a classic example of the shortcomings of the Windows platform -- registry and runtime (.dll) issues are much less of a problem on Unix platforms. Windows has other advantages, but wow, it has issues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 20:22:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527839#M41348</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-06-24T20:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527840#M41349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think my problem here is the ESRI-centric philosophy for running Python... Again, I come at this from the non-ESRI need for python - pypyodbc, psycopg2 - and can run them just fine for many database ETL solutions. But anything involving an ArcGIS python process really messes up the system... I'll keep digging. Thanks for the information!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2016 20:29:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527840#M41349</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2016-06-28T20:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527841#M41350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah a fantastic solution has emerged:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pythongisandstuff.wordpress.com/2015/09/14/enable-python-installations-that-were-not-installed-by-arcgis-to-access-arcpy-functionality/" title="https://pythongisandstuff.wordpress.com/2015/09/14/enable-python-installations-that-were-not-installed-by-arcgis-to-access-arcpy-functionality/"&gt;Enable Python installations that were not installed by ArcGIS to access Arcpy functionality | Python, GIS and stuff…&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy the &lt;STRONG&gt;Desktop10.1.pth &lt;/STRONG&gt;file from the ArcGIS python installation to the standard python installation! See the link above for the quick and easy solution (a few prerequisites... but nothing too complicated...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2016 21:05:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527841#M41350</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2016-07-06T21:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527842#M41351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I had the same problem, it seems with install of ArcGIs 10.4.1, i choose full install, and numpy was notinstalled as part of the process. It looks like a bug in the ArcGis 10.4.1 install&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rudy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 02:17:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527842#M41351</guid>
      <dc:creator>CoMAGOL_ADMINISTRATOR</dc:creator>
      <dc:date>2016-09-29T02:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527843#M41352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not heard of this problem yet after thousands of enterprise installs in my organization, so I suspect the issue is multiple Pythons. Best solution: Remove all the non-Esri pythons seen in&amp;nbsp;&amp;nbsp;Add/Remove Programs, repair install of ArcGIS 10.4.1, (and background GP and Pro, if you have them). This should get numpy back in your path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Oct 2016 02:13:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527843#M41352</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-10-08T02:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527844#M41353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thousands of ESRI Enterprise installs? Well This is not an ESRI enterprise install... so I'm glad I could be the first(-ish)! &lt;BR /&gt;&lt;BR /&gt;The non-ESRI python install is more valuable to me than the ESRI python, so merging the ESRI install &lt;EM&gt;into&lt;/EM&gt; the non-ESRI install is the best solution for me, and I'm glad someone has figured out a way to do this!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2016 14:41:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527844#M41353</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2016-10-10T14:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python Path Confusion</title>
      <link>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527845#M41354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Esri's install has always supported a previously installed 2.x python, but to get it to work with Esri software you need to make sure the versions of python, numpy, matplotlib, etc line up with what Esri tools expect. If you choose to use an 'existing' python, Anaconda is a really good option so you can make sure everything is compatible. &lt;A href="https://community.esri.com/blogs/dan_patterson/2016/07/17/anaconda-spyder-and-arcgis-pro?sr=search&amp;amp;searchId=efa9d8a0-5c71-41fd-b38b-9adf8abc53f4&amp;amp;searchIndex=0"&gt;/blogs/dan_patterson/2016/07/17/anaconda-spyder-and-arcgis-pro?sr=search&amp;amp;searchId=efa9d8a0-5c71-41fd-b38b-9adf8abc53f4&amp;amp;searchIndex=0&lt;/A&gt;‌&amp;nbsp; &lt;A href="https://community.esri.com/people/curtvprice/blog/2016/02/18/using-a-user-specific-python-startup-script?sr=search&amp;amp;searchId=efa9d8a0-5c71-41fd-b38b-9adf8abc53f4&amp;amp;searchIndex=2"&gt;https://community.esri.com/people/curtvprice/blog/2016/02/18/using-a-user-specific-python-startup-script?sr=search&amp;amp;searchId=efa9d8a0-5c71-41fd-b38b-9adf8abc53f4&amp;amp;searchIndex=2&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2016 02:54:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-path-confusion/m-p/527845#M41354</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-10-11T02:54:49Z</dc:date>
    </item>
  </channel>
</rss>

