<?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 Thank you Todd for response. in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076849#M235</link>
    <description>&lt;P&gt;Thank you Todd for response.&lt;/P&gt;

&lt;P&gt;I am using Python 2.7 so what will be instructions to download 2.7 version?&lt;/P&gt;

&lt;P&gt;Additional question, how can i download this package from Intel environment, because for some reason from conda i am getting:&lt;/P&gt;

&lt;P&gt;"CONDAIOError: IO ERROR: missing write permissions."&lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jan 2017 07:18:55 GMT</pubDate>
    <dc:creator>Felix_D_Intel</dc:creator>
    <dc:date>2017-01-30T07:18:55Z</dc:date>
    <item>
      <title>Python Pandas - pandas Missing required dependencies ['numpy']</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076845#M231</link>
      <description>&lt;P&gt;&lt;SPAN style="text-align: left; color: rgb(36, 39, 41); text-transform: none; text-indent: 0px; letter-spacing: normal; font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; font-size: 15px; font-style: normal; font-weight: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(255, 255, 255); font-variant-ligatures: normal; font-variant-caps: normal; -webkit-text-stroke-width: 0px;"&gt;I updated conda with "conda update conda", but after update i started to fail "import pandas as pd" with error message pandas Missing required dependencies ['numpy'] Working with pandas 0.19.0 and using idp.&amp;nbsp;Can anyone supply solution? Thank you Felix&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2017 10:29:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076845#M231</guid>
      <dc:creator>Felix_D_Intel</dc:creator>
      <dc:date>2017-01-22T10:29:57Z</dc:date>
    </item>
    <item>
      <title>Felix,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076846#M232</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Can you send me a little more information on your configuration? What is your operating system and IDP version? Did you download the full IDP installer or install our packages from the Anaconda Cloud?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Please send the output of "conda list", "conda info", and the full error message.&lt;/P&gt;

&lt;P&gt;Thank you, Todd&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 14:39:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076846#M232</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2017-01-24T14:39:12Z</dc:date>
    </item>
    <item>
      <title>Thank you, Todd for answer.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076847#M233</link>
      <description>&lt;P&gt;Thank you, Todd for answer.&lt;/P&gt;

&lt;P&gt;Unfortunately because of time pressure, i was forced to uninstall and reinstall Anaconda. Seems Numpy was corrupted in some way. Currently, no IDP installed. Can you please send info about IDP installer? Thank you. Felix&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 08:06:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076847#M233</guid>
      <dc:creator>Felix_D_Intel</dc:creator>
      <dc:date>2017-01-25T08:06:01Z</dc:date>
    </item>
    <item>
      <title>You can download and install</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076848#M234</link>
      <description>&lt;P&gt;You can download and install the Intel(R) Distribution for Python from our&amp;nbsp;&lt;A href="https://software.intel.com/en-us/intel-distribution-for-python" target="_blank"&gt;product page&lt;/A&gt;. The installer will create a new python installation with all Intel provided packages and optimizations.&lt;/P&gt;

&lt;P&gt;If you have an existing conda-based python environment (after a Miniconda or Anaconda python installation), you can use Intel packages from the Anaconda Cloud. To create an environment using our packages, use a command such as the following:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -c intel -n intelpython3 python=3 intelpython3_core pandas &lt;/PRE&gt;

&lt;P&gt;That command will:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;(create) create a new environment&lt;/LI&gt;
	&lt;LI&gt;(-c intel) &amp;nbsp;using packages in the intel channel on anaconda.org,&lt;/LI&gt;
	&lt;LI&gt;(-n intelpython3) &amp;nbsp;name the new environment "intelpython3"&lt;/LI&gt;
	&lt;LI&gt;(python=3) &amp;nbsp;using python 3.x,&lt;/LI&gt;
	&lt;LI&gt;(intelpython3_core pandas) &amp;nbsp;and adding the "intelpython3_core" and "pandas" packages&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;intelpython3_core includes python itself, numpy, mkl, tbb, and their dependencies.&lt;/P&gt;

&lt;P&gt;Once that environment is created, you "source activate intelpython3" to use the new environment.&lt;/P&gt;

&lt;P&gt;More information can be found through our product page in the &lt;A href="https://software.intel.com/en-us/intel-distribution-for-python/faq" target="_blank"&gt;FAQs&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;Let me know if you need further assistance.&lt;/P&gt;

&lt;P&gt;Todd&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 16:23:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076848#M234</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2017-01-25T16:23:47Z</dc:date>
    </item>
    <item>
      <title>Thank you Todd for response.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076849#M235</link>
      <description>&lt;P&gt;Thank you Todd for response.&lt;/P&gt;

&lt;P&gt;I am using Python 2.7 so what will be instructions to download 2.7 version?&lt;/P&gt;

&lt;P&gt;Additional question, how can i download this package from Intel environment, because for some reason from conda i am getting:&lt;/P&gt;

&lt;P&gt;"CONDAIOError: IO ERROR: missing write permissions."&lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 07:18:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076849#M235</guid>
      <dc:creator>Felix_D_Intel</dc:creator>
      <dc:date>2017-01-30T07:18:55Z</dc:date>
    </item>
    <item>
      <title>Felix,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076850#M236</link>
      <description>&lt;P&gt;Felix,&lt;/P&gt;

&lt;P&gt;To use python 2.7, the following command should work:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -c intel -n intelpython2 python=2 intelpython2_core pandas&lt;/PRE&gt;

&lt;P&gt;As for the CONDAIOError, I would guess that you do not have write privileges to the python installation directory. What OS platform are you on? Are you using your own python installation or a system-level admin installation?&lt;/P&gt;

&lt;P&gt;Todd&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 22:05:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076850#M236</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2017-01-30T22:05:45Z</dc:date>
    </item>
    <item>
      <title>Thank you, Todd.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076851#M237</link>
      <description>&lt;P&gt;Thank you, Todd.&lt;/P&gt;

&lt;P&gt;Works ok. IOError resolved with "Run As Administrator" option&lt;/P&gt;

&lt;P&gt;Appreciate your help.&lt;/P&gt;

&lt;P&gt;Felix&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 08:38:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Pandas-pandas-Missing-required-dependencies-numpy/m-p/1076851#M237</guid>
      <dc:creator>Felix_D_Intel</dc:creator>
      <dc:date>2017-02-01T08:38:16Z</dc:date>
    </item>
  </channel>
</rss>

