<?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 Quote:John Otken wrote: in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075877#M224</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;John Otken wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I could not use conda to install opencv because that version of opencv depends on numpy 1.7 so I ended up using "conda install opencv -c conda-forge". &amp;nbsp;I'm making progress again, but if there is a better way to get opencv with Intel Python, please let me know. &amp;nbsp;Thanks.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I just tried installing opencv into Intel Distribution for Python3, got the instructions on &lt;A href="http://stackoverflow.com/questions/23119413/how-to-install-python-opencv-through-conda"&gt;StackOverflow&lt;/A&gt;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;(idp_2017u2) [15:39:32 fxsatlin04 opavlyk]$ conda install -c &lt;A href="https://conda.binstar.org/menpo" target="_blank"&gt;https://conda.binstar.org/menpo&lt;/A&gt; opencv
Fetching package metadata .........
Solving package specifications: ..........

Package plan for installation in environment /localdisk/work/opavlyk/miniconda3/envs/idp_2017u2:

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    opencv-3.1.0               |      np111py35_1        36.5 MB

The following NEW packages will be INSTALLED:

    opencv: 3.1.0-np111py35_1

Proceed (&lt;Y&gt;/n)?
&lt;/Y&gt;&lt;/PRE&gt;

&lt;P&gt;which appeared to work fine. I have not found opencv for Python 2 yet.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2017 00:49:09 GMT</pubDate>
    <dc:creator>Oleksandr_P_Intel</dc:creator>
    <dc:date>2017-04-07T00:49:09Z</dc:date>
    <item>
      <title>ImportError: cannot import name fft_ on OSX (Python+MKL)</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075868#M215</link>
      <description>&lt;P&gt;I installed MKL and the Intel Python Distribution for OSX and I'm having trouble importing scipy.signal:&lt;/P&gt;

&lt;P&gt;$ python&lt;BR /&gt;
	Python 2.7.12 |Intel Corporation| (default, Feb &amp;nbsp;5 2017, 00:31:58)&amp;nbsp;&lt;BR /&gt;
	[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin&lt;BR /&gt;
	Type "help", "copyright", "credits" or "license" for more information.&lt;BR /&gt;
	Intel(R) Distribution for Python is brought to you by Intel Corporation.&lt;BR /&gt;
	Please check out: &lt;A href="https://software.intel.com/en-us/python-distribution" target="_blank"&gt;https://software.intel.com/en-us/python-distribution&lt;/A&gt;&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt; import scipy.signal&lt;BR /&gt;
	Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/scipy/signal/__init__.py", line 298, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from .windows import *&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/scipy/signal/windows.py", line 7, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from scipy import fftpack, linalg, special&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/scipy/fftpack/__init__.py", line 98, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from numpy.fft import fft_ &amp;nbsp; as fft&lt;BR /&gt;
	ImportError: cannot import name fft_&lt;/P&gt;

&lt;P&gt;I get a similar failure when I run scipy.test():&lt;/P&gt;

&lt;P&gt;$ python&lt;BR /&gt;
	Python 2.7.12 |Intel Corporation| (default, Feb &amp;nbsp;5 2017, 00:31:58)&amp;nbsp;&lt;BR /&gt;
	[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin&lt;BR /&gt;
	Type "help", "copyright", "credits" or "license" for more information.&lt;BR /&gt;
	Intel(R) Distribution for Python is brought to you by Intel Corporation.&lt;BR /&gt;
	Please check out: &lt;A href="https://software.intel.com/en-us/python-distribution" target="_blank"&gt;https://software.intel.com/en-us/python-distribution&lt;/A&gt;&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt; import scipy&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt; scipy.test()&lt;BR /&gt;
	Running unit tests for scipy&lt;BR /&gt;
	NumPy version 1.12.1&lt;BR /&gt;
	NumPy relaxed strides checking option: True&lt;BR /&gt;
	NumPy is installed in /opt/intel/intelpython27/lib/python2.7/site-packages/numpy&lt;BR /&gt;
	SciPy version 0.18.1&lt;BR /&gt;
	SciPy is installed in /opt/intel/intelpython27/lib/python2.7/site-packages/scipy&lt;BR /&gt;
	Python version 2.7.12 |Intel Corporation| (default, Feb &amp;nbsp;5 2017, 00:31:58) [GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)]&lt;BR /&gt;
	nose version 1.3.7&lt;BR /&gt;
	[snip]&lt;BR /&gt;
	ERROR: Failure: ImportError (cannot import name fft_)&lt;BR /&gt;
	----------------------------------------------------------------------&lt;BR /&gt;
	Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/nose/loader.py", line 418, in loadTestsFromName&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; addr.filename, addr.module)&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/nose/importer.py", line 47, in importFromPath&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; return self.importFromDir(dir_path, fqname)&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/nose/importer.py", line 94, in importFromDir&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; mod = load_module(part_fqname, fh, filename, desc)&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython27/lib/python2.7/site-packages/scipy/fftpack/__init__.py", line 98, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from numpy.fft import fft_ &amp;nbsp; as fft&lt;BR /&gt;
	ImportError: cannot import name fft_&lt;BR /&gt;
	[snip]&lt;BR /&gt;
	----------------------------------------------------------------------&lt;BR /&gt;
	Ran 22144 tests in 515.705s&lt;/P&gt;

&lt;P&gt;FAILED (KNOWNFAIL=59, SKIP=1834, errors=3, failures=3)&lt;BR /&gt;
	&amp;lt;nose.result.TextTestResult run=22144 errors=3 failures=3&amp;gt;&lt;/P&gt;

&lt;P&gt;I assume I made a mistake during my install. &amp;nbsp;I would appreciate any guidance. &amp;nbsp;Thanks in advance.&lt;/P&gt;
&lt;STYLE type="text/css"&gt;p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #000000; background-color: #ffffff}
span.s1 {font-variant-ligatures: no-common-ligatures}
&lt;/STYLE&gt;</description>
      <pubDate>Wed, 05 Apr 2017 23:35:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075868#M215</guid>
      <dc:creator>John_O_</dc:creator>
      <dc:date>2017-04-05T23:35:14Z</dc:date>
    </item>
    <item>
      <title>Hi John, </title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075869#M216</link>
      <description>&lt;P&gt;Hi John,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I was attempting to recreate the problem you experience as follows:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;# install Miniconda3 downloaded with curl -O &lt;A href="https://repo.continuum.io/miniconda/Miniconda3-4.2.12-MacOSX-x86_64.sh" target="_blank"&gt;https://repo.continuum.io/miniconda/Miniconda3-4.2.12-MacOSX-x86_64.sh&lt;/A&gt;
./Miniconda3-4.2.12-MacOSX-x86_64.sh
# activate
source ./miniconda3/bin/activate
# create environment
conda create --name idp_2017u2_py2 -c intel python=2 intelpython2_core --yes
# activate it
source activate idp_2017u2_py2
&lt;/PRE&gt;

&lt;P&gt;With this setup I can not reproduce the problem:&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;# try to reproduce
(idp_2017u2_py2) [20:40:25 fxsatmac02 opavlyk]$ python
Python 2.7.12 |Intel Corporation| (default, Feb  5 2017, 00:31:58)
[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Intel(R) Distribution for Python is brought to you by Intel Corporation.
Please check out: &lt;A href="https://software.intel.com/en-us/python-distribution" target="_blank"&gt;https://software.intel.com/en-us/python-distribution&lt;/A&gt;
&amp;gt;&amp;gt;&amp;gt; import scipy.signal
&amp;gt;&amp;gt;&amp;gt; exit()
&lt;/PRE&gt;

&lt;P&gt;Did you do&lt;SPAN style="font-size: 1em;"&gt;wnload the distribution as an installer from&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em;"&gt;registrationcenter.intel.com?&lt;BR /&gt;
	&lt;BR /&gt;
	Perhaps the method I tried could be used as a work-around. I will try to reproduce the issue using the installer.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Best regards, Oleksandr&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 01:56:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075869#M216</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-06T01:56:52Z</dc:date>
    </item>
    <item>
      <title>Hi John,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075870#M217</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;

&lt;P&gt;If you run the following commands in a Terminal window on macOS, do you see any results?&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda list | grep scipy&lt;/PRE&gt;

&lt;PRE class="brush:bash;" style="font-size: 13.008000373840332px;"&gt;conda list | grep mkl&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Apr 2017 05:12:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075870#M217</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-06T05:12:03Z</dc:date>
    </item>
    <item>
      <title>Please try running</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075871#M218</link>
      <description>&lt;P&gt;Please try running&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;python -c "import numpy.fft as m; print dir(m)"&lt;/PRE&gt;

&lt;P&gt;This what I get by running this line:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;(idp_2017u2_py2) [21:18:02 fxsatmac02 opavlyk]$ python -c "import numpy.fft as m; print dir(m)"
['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '_numpy_tester', 
'absolute_import', 'bench', 'division', 'fft', 'fft2', 'fft2_', 'fft_', 'fftfreq', 'fftn', 'fftn_', 
'fftshift', 'helper', 'hfft', 'ifft', 'ifft2', 'ifft2_', 'ifft_', 'ifftn', 'ifftn_', 'ifftshift', 
'ihfft', 'info', 'irfft', 'irfft2', 'irfftn', 'print_function', 'rfft', 'rfft2', 'rfftfreq', 'rfftn', 'test']
&lt;/PRE&gt;

&lt;P&gt;It would also be useful if you included the full output of&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;/opt/intel/intelpython27/bin/conda list --explicit&lt;/PRE&gt;

&lt;P&gt;Thank you,&lt;BR /&gt;
	Oleksandr&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 13:38:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075871#M218</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-06T13:38:24Z</dc:date>
    </item>
    <item>
      <title>Here you go Gastón:</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075872#M219</link>
      <description>&lt;P&gt;Here you go Gastón:&lt;/P&gt;

&lt;P&gt;(root) mini:tmp john$ conda list | grep scipy&lt;BR /&gt;
	scipy &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.18.1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; np111py27_intel_10&amp;nbsp; [intel]&amp;nbsp; intel&lt;BR /&gt;
	(root) mini:tmp john$ conda list | grep mkl&lt;BR /&gt;
	mkl &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2017.0.2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel_1&amp;nbsp; [intel]&amp;nbsp; intel&lt;/P&gt;

&lt;P&gt;And for you Oleksandr:&lt;/P&gt;

&lt;P&gt;(root) mini:tmp john$ python -c "import numpy.fft as m; print dir(m)"&lt;BR /&gt;
	['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '_numpy_tester', 'absolute_import', 'bench', 'division', 'fft', 'fft2', 'fftfreq', 'fftn', 'fftpack', 'fftpack_lite', 'fftshift', 'helper', 'hfft', 'ifft', 'ifft2', 'ifftn', 'ifftshift', 'ihfft', 'info', 'irfft', 'irfft2', 'irfftn', 'print_function', 'rfft', 'rfft2', 'rfftfreq', 'rfftn', 'test']&lt;BR /&gt;
	(root) mini:tmp john$ /opt/intel/intelpython27/bin/conda list --explicit&lt;BR /&gt;
	# This file may be used to create an environment using:&lt;BR /&gt;
	# $ conda create --name &lt;ENV&gt; --file &lt;THIS file=""&gt;&lt;BR /&gt;
	# platform: osx-64&lt;BR /&gt;
	@EXPLICIT&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/appnope-0.1.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/appnope-0.1.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/backports-1.0-py27_intel_6.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/backports-1.0-py27_intel_6.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/backports_abc-0.4-py27_intel_7.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/backports_abc-0.4-py27_intel_7.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/conda-4.2.12-py27_intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/conda-4.2.12-py27_intel_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/conda-env-2.6.0-0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/conda-env-2.6.0-0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/configparser-3.5.0-py27_intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/configparser-3.5.0-py27_intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/cycler-0.10.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/cycler-0.10.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/cython-0.24-py27_intel_16.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/cython-0.24-py27_intel_16.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/decorator-4.0.10-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/decorator-4.0.10-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/entrypoints-0.2.2-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/entrypoints-0.2.2-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/enum34-1.1.6-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/enum34-1.1.6-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/freetype-2.5.5-intel_9.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/freetype-2.5.5-intel_9.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/funcsigs-1.0.2-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/funcsigs-1.0.2-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/functools32-3.2.3.2-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/functools32-3.2.3.2-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/get_terminal_size-1.0.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/get_terminal_size-1.0.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/hdf5-1.8.17-intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/hdf5-1.8.17-intel_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/icc_rt-16.0.3-intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/icc_rt-16.0.3-intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/intelpython-2017.0.2-0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/intelpython-2017.0.2-0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ipykernel-4.5.0-py27_intel_4.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ipykernel-4.5.0-py27_intel_4.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ipython-4.2.0-py27_intel_8.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ipython-4.2.0-py27_intel_8.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ipython_genutils-0.1.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ipython_genutils-0.1.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ipywidgets-5.2.2-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ipywidgets-5.2.2-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jinja2-2.8-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jinja2-2.8-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jsonschema-2.5.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jsonschema-2.5.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jupyter-1.0.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jupyter-1.0.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jupyter_client-4.4.0-py27_intel_2.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jupyter_client-4.4.0-py27_intel_2.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jupyter_console-5.0.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jupyter_console-5.0.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/jupyter_core-4.2.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/jupyter_core-4.2.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/libpng-1.6.28-intel_10.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/libpng-1.6.28-intel_10.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/llvmlite-0.15.0-py27_intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/llvmlite-0.15.0-py27_intel_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/markupsafe-0.23-py27_intel_6.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/markupsafe-0.23-py27_intel_6.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/matplotlib-1.5.3-py27_intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/matplotlib-1.5.3-py27_intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/mistune-0.7.3-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/mistune-0.7.3-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/mkl-2017.0.2-intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/mkl-2017.0.2-intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/mpmath-0.19-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/mpmath-0.19-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/nbconvert-4.2.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/nbconvert-4.2.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/nbformat-4.1.0-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/nbformat-4.1.0-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/nose-1.3.7-py27_intel_12.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/nose-1.3.7-py27_intel_12.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/notebook-4.2.3-py27_intel_7.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/notebook-4.2.3-py27_intel_7.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/numba-0.30.1-py27_intel_11.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/numba-0.30.1-py27_intel_11.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/numexpr-2.6.1-np111py27_intel_11.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/numexpr-2.6.1-np111py27_intel_11.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/numpy-1.11.2-py27_intel_51.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/numpy-1.11.2-py27_intel_51.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/openssl-1.0.2k-intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/openssl-1.0.2k-intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pandas-0.19.2-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pandas-0.19.2-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/path.py-8.2.1-py27_intel_7.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/path.py-8.2.1-py27_intel_7.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pathlib2-2.1.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pathlib2-2.1.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pexpect-4.0.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pexpect-4.0.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pickleshare-0.7.4-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pickleshare-0.7.4-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pip-8.1.2-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pip-8.1.2-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/prompt_toolkit-1.0.3-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/prompt_toolkit-1.0.3-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ptyprocess-0.5.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ptyprocess-0.5.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pycosat-0.6.1-py27_intel_6.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pycosat-0.6.1-py27_intel_6.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pydaal-2017.0.2.20170126-py27_intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pydaal-2017.0.2.20170126-py27_intel_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pygments-2.1.3-py27_intel_6.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pygments-2.1.3-py27_intel_6.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pyparsing-2.1.4-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pyparsing-2.1.4-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pytables-3.2.3.1-py27_intel_8.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pytables-3.2.3.1-py27_intel_8.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/python-2.7.12-intel_20.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/python-2.7.12-intel_20.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/python-dateutil-2.5.3-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/python-dateutil-2.5.3-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pytz-2016.6.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pytz-2016.6.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/pyzmq-15.4.0-py27_intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/pyzmq-15.4.0-py27_intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/requests-2.11.1-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/requests-2.11.1-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ruamel_yaml-0.11.14-py27_intel_1.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ruamel_yaml-0.11.14-py27_intel_1.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/scikit-learn-0.18.1-py27_intel_4.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/scikit-learn-0.18.1-py27_intel_4.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/scipy-0.18.1-np111py27_intel_10.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/scipy-0.18.1-np111py27_intel_10.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/setuptools-23.0.0-py27_intel_4.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/setuptools-23.0.0-py27_intel_4.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/simplegeneric-0.8.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/simplegeneric-0.8.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/singledispatch-3.4.0.3-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/singledispatch-3.4.0.3-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/six-1.10.0-py27_intel_7.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/six-1.10.0-py27_intel_7.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/sqlite-3.13.0-intel_13.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/sqlite-3.13.0-intel_13.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/ssl_match_hostname-3.5.0.1-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/ssl_match_hostname-3.5.0.1-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/sympy-1.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/sympy-1.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/tbb-2017.0.4-py27_intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/tbb-2017.0.4-py27_intel_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/tcl-8.6.4-intel_16.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/tcl-8.6.4-intel_16.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/terminado-0.6-py27_intel_6.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/terminado-0.6-py27_intel_6.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/tk-8.6.4-intel_18.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/tk-8.6.4-intel_18.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/tornado-4.4.1-py27_intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/tornado-4.4.1-py27_intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/traitlets-4.2.2-py27_intel_3.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/traitlets-4.2.2-py27_intel_3.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/wcwidth-0.1.7-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/wcwidth-0.1.7-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/wheel-0.29.0-py27_intel_5.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/wheel-0.29.0-py27_intel_5.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/widgetsnbextension-1.2.6-py27_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/widgetsnbextension-1.2.6-py27_0.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/yaml-0.1.6-intel_10.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/yaml-0.1.6-intel_10.tar.bz2&lt;/A&gt;&lt;BR /&gt;
	&lt;A href="https://conda.anaconda.org/intel/osx-64/zlib-1.2.11-intel_0.tar.bz2" target="_blank"&gt;https://conda.anaconda.org/intel/osx-64/zlib-1.2.11-intel_0.tar.bz2&lt;/A&gt; &lt;/THIS&gt;&lt;/ENV&gt;&lt;/P&gt;

&lt;P&gt;Let me know if you have any other commands to try. In a few hours, I'll uninstall and reinstall per Oleksandr's original reply. Thank you for your assistance!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:25:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075872#M219</guid>
      <dc:creator>John_O_</dc:creator>
      <dc:date>2017-04-06T18:25:15Z</dc:date>
    </item>
    <item>
      <title>Hi John,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075873#M220</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;Hi John,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;It seems to me you have everything that is needed. I'm working with 2017 Update 2 on macOS El Capitan, formerly known as OS X El Capitan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:52:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075873#M220</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-06T18:52:36Z</dc:date>
    </item>
    <item>
      <title>John, </title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075874#M221</link>
      <description>&lt;P&gt;John,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I copy-pasted the output of your run of `conda list --explicit`, commented out two entries about conda and conda-env &amp;nbsp;(lines 4 and 5) after the line `@EXPLICIT`, saved the file into `john_env.txt`, and then ran&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create --name john --file john_env.txt&lt;/PRE&gt;

&lt;P&gt;This recreated your environment as conda thought it was. Even here the problem could not reproduced:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;(root) [14:29:34 fxsatmac02 opavlyk]$ . activate john
(john) [14:29:59 fxsatmac02 opavlyk]$ python -c "import numpy.fft as m; print dir(m)"
['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', 
'_numpy_tester', 'absolute_import', 'bench', 'division', 'fft', 'fft2', 'fft2_', 
'fft_', 'fftfreq', 'fftn', 'fftn_', 'fftshift', 'helper', 'hfft', 'ifft', 'ifft2', 
'ifft2_', 'ifft_', 'ifftn', 'ifftn_', 'ifftshift', 'ihfft', 'info', 'irfft', 
'irfft2', 'irfftn', 'print_function', 'rfft', 'rfft2', 'rfftfreq', 'rfftn', 'test']
&lt;/PRE&gt;

&lt;P&gt;It is best to reinstall the distribution to see if the problem fixes itself.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 19:34:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075874#M221</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-06T19:34:00Z</dc:date>
    </item>
    <item>
      <title>I reinstalled using Oleksandr</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075875#M222</link>
      <description>&lt;P&gt;I reinstalled using&amp;nbsp;Oleksandr instructions and importing scipy.signal works fine, but when I try to run my production code, an import cv2 fails. &amp;nbsp;I tried installing via "conda install opencv-python" but I get a PackageNotFoundError, so I used "pip install opencv-python". &amp;nbsp;That works but it reinstalls numpy and my problem reappears!&lt;/P&gt;

&lt;P&gt;(idp_2017u2_py2) mini:registrar john$ conda install opencv-python&lt;BR /&gt;
	PackageNotFoundError: Package not found: '' Package missing in current osx-64 channels:&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; - opencv-python&lt;BR /&gt;
	(idp_2017u2_py2) mini:registrar john$ pip install opencv-python&lt;BR /&gt;
	Installing collected packages: numpy, opencv-python&lt;BR /&gt;
	&amp;nbsp; Found existing installation: numpy 1.11.2&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; Uninstalling numpy-1.11.2:&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; Successfully uninstalled numpy-1.11.2&lt;BR /&gt;
	Successfully installed numpy-1.12.1 opencv-python-3.2.0.6&lt;/P&gt;

&lt;P&gt;(idp_2017u2_py2) mini:registrar john$ python&lt;BR /&gt;
	Python 2.7.12 |Intel Corporation| (default, Feb&amp;nbsp; 5 2017, 00:31:58)&amp;nbsp;&lt;BR /&gt;
	[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin&lt;BR /&gt;
	Type "help", "copyright", "credits" or "license" for more information.&lt;BR /&gt;
	Intel(R) Distribution for Python is brought to you by Intel Corporation.&lt;BR /&gt;
	Please check out: &lt;A href="https://software.intel.com/en-us/python-distribution" target="_blank"&gt;https://software.intel.com/en-us/python-distribution&lt;/A&gt;&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt; import scipy.signal&lt;BR /&gt;
	Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; File "/Users/john/miniconda3/envs/idp_2017u2_py2/lib/python2.7/site-packages/scipy/signal/__init__.py", line 298, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from .windows import *&lt;BR /&gt;
	&amp;nbsp; File "/Users/john/miniconda3/envs/idp_2017u2_py2/lib/python2.7/site-packages/scipy/signal/windows.py", line 7, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from scipy import fftpack, linalg, special&lt;BR /&gt;
	&amp;nbsp; File "/Users/john/miniconda3/envs/idp_2017u2_py2/lib/python2.7/site-packages/scipy/fftpack/__init__.py", line 98, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; from numpy.fft import fft_ &amp;nbsp; as fft&lt;BR /&gt;
	ImportError: cannot import name fft_&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 22:57:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075875#M222</guid>
      <dc:creator>John_O_</dc:creator>
      <dc:date>2017-04-06T22:57:57Z</dc:date>
    </item>
    <item>
      <title>I could not use conda to</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075876#M223</link>
      <description>&lt;P&gt;I could not use conda to install opencv because that version of opencv depends on numpy 1.7 so I ended up using "conda install opencv -c conda-forge". &amp;nbsp;I'm making progress again, but if there is a better way to get opencv with Intel Python, please let me know. &amp;nbsp;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 00:40:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075876#M223</guid>
      <dc:creator>John_O_</dc:creator>
      <dc:date>2017-04-07T00:40:38Z</dc:date>
    </item>
    <item>
      <title>Quote:John Otken wrote:</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075877#M224</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;John Otken wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I could not use conda to install opencv because that version of opencv depends on numpy 1.7 so I ended up using "conda install opencv -c conda-forge". &amp;nbsp;I'm making progress again, but if there is a better way to get opencv with Intel Python, please let me know. &amp;nbsp;Thanks.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I just tried installing opencv into Intel Distribution for Python3, got the instructions on &lt;A href="http://stackoverflow.com/questions/23119413/how-to-install-python-opencv-through-conda"&gt;StackOverflow&lt;/A&gt;&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;(idp_2017u2) [15:39:32 fxsatlin04 opavlyk]$ conda install -c &lt;A href="https://conda.binstar.org/menpo" target="_blank"&gt;https://conda.binstar.org/menpo&lt;/A&gt; opencv
Fetching package metadata .........
Solving package specifications: ..........

Package plan for installation in environment /localdisk/work/opavlyk/miniconda3/envs/idp_2017u2:

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    opencv-3.1.0               |      np111py35_1        36.5 MB

The following NEW packages will be INSTALLED:

    opencv: 3.1.0-np111py35_1

Proceed (&lt;Y&gt;/n)?
&lt;/Y&gt;&lt;/PRE&gt;

&lt;P&gt;which appeared to work fine. I have not found opencv for Python 2 yet.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 00:49:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075877#M224</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-07T00:49:09Z</dc:date>
    </item>
    <item>
      <title>I'm currently using Python 2</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075878#M225</link>
      <description>&lt;P&gt;I'm currently using Python 2.7. &amp;nbsp;When I installed using conde-forge, it displays:&lt;/P&gt;

&lt;P&gt;opencv: &amp;nbsp; &amp;nbsp; &amp;nbsp;3.2.0-np111py27_blas_openblas_200 conda-forge [blas_openblas]&lt;/P&gt;

&lt;P&gt;I assume that means opencv is using the non-optimal BLAS library as opposed to MKL.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 01:30:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075878#M225</guid>
      <dc:creator>John_O_</dc:creator>
      <dc:date>2017-04-07T01:30:43Z</dc:date>
    </item>
    <item>
      <title>Hi John,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075879#M226</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi John,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The initial problem you mentioned in this thread has been solved by reinstalling. So, this thread is solved. Now, you are trying to install a different package to run your code. When this happens, instead of adding additional questions on the same thread, it is a good idea to open another thread with the specific problem / question. This way, the forum has a better organization.&lt;/P&gt;

&lt;P&gt;I'm not working with opencv on Pyton 2.7 on macOS. So, I won't be able to help you with your new question. It's great to know the first issue is solved.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 02:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/ImportError-cannot-import-name-fft-on-OSX-Python-MKL/m-p/1075879#M226</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-07T02:32:51Z</dc:date>
    </item>
  </channel>
</rss>

