<?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: Scipy install steps for ArcGIS v10.1 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/scipy-install-steps-for-arcgis-v10-1/m-p/131437#M10205</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;HA! On a lark, decided to try installing scipy v0.11 (right after I put up original post)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;WORKED!&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; ArcGIS v10.1 SP1 == scipy v0.11
True&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The stuborn and overly time consuming 'trial and error method' wins the day once again!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:23:02 GMT</pubDate>
    <dc:creator>ChrisSnyder</dc:creator>
    <dc:date>2021-12-11T07:23:02Z</dc:date>
    <item>
      <title>Scipy install steps for ArcGIS v10.1</title>
      <link>https://community.esri.com/t5/python-questions/scipy-install-steps-for-arcgis-v10-1/m-p/131436#M10204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would like to install the scipy site package (not the entire scipy "stack"), and am looking for someone's advice (a brief how-to) who has done this before and not totally whacked their ArcGIS Python 2.7 install. Idealy I want scipy to be available to both the ArcGIS 32 and 64 bit installs of Python (C:\Python27\ArcGIS10.1 and C:\Python27\ArcGISx6410.1 respectively).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am assuming ArcGIS v10.1 SP1, Python 2.7.2, which is using numpy 1.6.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried installing both scipy v0.12 and v0.10.1 from &lt;/SPAN&gt;&lt;A href="http://sourceforge.net/projects/scipy/files/scipy/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://sourceforge.net/projects/scipy/files/scipy/&lt;/A&gt;&lt;SPAN&gt;, and while many of the scipy functions work, the 'stats' submodule (scipy.stats - aka the one I actually want to use!!!) does not.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I was (1st) trying this with scipy v0.12 I got the error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; from scipy import stats
&lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\stats\__init__.py", line 320, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from .stats import *
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\stats\stats.py", line 241, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import scipy.special as special
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\special\__init__.py", line 529, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from ._ufuncs import *
ImportError: DLL load failed: The specified module could not be found.&lt;/SPAN&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Upon some advice here: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/91254-ArcGIS-10.1-Python-crash-on-quot-import-arcpy-quot-after-installing-scipy-stack.?p=323887&amp;amp;viewfull=1#post323887" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/91254-ArcGIS-10.1-Python-crash-on-quot-import-arcpy-quot-after-installing-scipy-stack.?p=323887&amp;amp;viewfull=1#post323887&lt;/A&gt;&lt;SPAN&gt;, I downgraded to scipy v0.10.1 and now get a more exciting error (relating to numpy datatypes, but at least it seems to be getting closer!)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; from scipy import stats
&lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\stats\__init__.py", line 322, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from stats import *
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\stats\stats.py", line 198, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import distributions
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\stats\distributions.py", line 14, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from scipy import optimize
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\optimize\__init__.py", line 135, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from nonlin import *
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\optimize\nonlin.py", line 118, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import scipy.sparse.linalg
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\sparse\__init__.py", line 182, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from csgraph import *
&amp;nbsp; File "C:\Python27\ArcGIS10.1\lib\site-packages\scipy\sparse\csgraph\__init__.py", line 148, in &amp;lt;module&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; from ._shortest_path import shortest_path, floyd_warshall, dijkstra,\
&amp;nbsp; File "numpy.pxd", line 155, in init scipy.sparse.csgraph._shortest_path (scipy\sparse\csgraph\_shortest_path.c:13971)
ValueError: numpy.dtype has the wrong size, try recompiling&lt;/SPAN&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone have any advice? Jason S.? Luke P.? or ???&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:23:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scipy-install-steps-for-arcgis-v10-1/m-p/131436#M10204</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2021-12-11T07:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Scipy install steps for ArcGIS v10.1</title>
      <link>https://community.esri.com/t5/python-questions/scipy-install-steps-for-arcgis-v10-1/m-p/131437#M10205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;HA! On a lark, decided to try installing scipy v0.11 (right after I put up original post)...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;WORKED!&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; ArcGIS v10.1 SP1 == scipy v0.11
True&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The stuborn and overly time consuming 'trial and error method' wins the day once again!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:23:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scipy-install-steps-for-arcgis-v10-1/m-p/131437#M10205</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2021-12-11T07:23:02Z</dc:date>
    </item>
  </channel>
</rss>

