<?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 1 -----&amp;gt;  open windows in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100058#M484</link>
    <description>&lt;P&gt;1 -----&amp;gt;&amp;nbsp; open windows command prompt&lt;/P&gt;&lt;P&gt;2 ------&amp;gt; go to the location "&amp;nbsp; &amp;nbsp;w_pythoni3_p_2020.1.893\intelpython3\Scripts "&lt;/P&gt;&lt;P&gt;3.-----&amp;gt; find&amp;nbsp; windows batch file&amp;nbsp; named&amp;nbsp; --&amp;nbsp; "&amp;nbsp; activate&amp;nbsp;"&lt;/P&gt;&lt;P&gt;4. .-----&amp;gt; run it in windows command prompt directly&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. thats it.&lt;/P&gt;</description>
    <pubDate>Mon, 25 May 2020 16:11:18 GMT</pubDate>
    <dc:creator>k__k</dc:creator>
    <dc:date>2020-05-25T16:11:18Z</dc:date>
    <item>
      <title>Python Installation</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100052#M478</link>
      <description>&lt;P&gt;I just installed Intel Distribution for Python 2017 along with Intel Parallel Studio XE Composer Edition for Fortran 2017 in a Windows 10 environment.&amp;nbsp; The Python installation appears to have completed successfully and it shows up in installed programs.&amp;nbsp; How do I&amp;nbsp;complete the second step in the windows installation process (ref Intel Distribution for Python 2017 release notes )&lt;/P&gt;

&lt;P&gt;- 2. When the installation process completes, activate your root python conda environment: To modify only your current command shell, use the following command: &amp;lt;install&amp;gt;\Scripts\activate&lt;/P&gt;

&lt;P&gt;How do I activate the root python conda environment?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks Rick&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 23:16:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100052#M478</guid>
      <dc:creator>newsome__rick</dc:creator>
      <dc:date>2016-10-03T23:16:57Z</dc:date>
    </item>
    <item>
      <title>Hi Rick,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100053#M479</link>
      <description>&lt;P&gt;Hi Rick,&lt;/P&gt;

&lt;P&gt;You can activate the root environment by running the activate script with no arguments: &amp;lt;install&amp;gt;\Scripts\activate. &amp;nbsp;This will ensure that your Intel Python installation is first on your PATH.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 14:08:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100053#M479</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2016-10-25T14:08:43Z</dc:date>
    </item>
    <item>
      <title>The activate.bat script</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100054#M480</link>
      <description>&lt;P&gt;The activate.bat script appears to do nothing for me on Windows 7, so I manually specified the path. How do you recommend we setup versions of Python 2.x and 3.x side-by-side?&lt;/P&gt;

&lt;P&gt;UPDATE: I just used an Anaconda environment similar to this (https://software.intel.com/en-us/articles/using-intel-distribution-for-python-with-anaconda), though it doesn't really resolve the issue when you have Intel Python 2.7 and 3.5 installed in two places.&lt;/P&gt;

&lt;P&gt;Adam&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 11:45:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100054#M480</guid>
      <dc:creator>Adam_E_</dc:creator>
      <dc:date>2016-11-04T11:45:00Z</dc:date>
    </item>
    <item>
      <title>Hi Adam,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100055#M481</link>
      <description>&lt;P&gt;Hi Adam,&lt;/P&gt;

&lt;P&gt;I would recommend keeping separate environments for python 2 and 3.&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;conda create -n py2 -c intel --override-channels python=2 package1 package2 ...

conda create -n py3 -c intel --override-channels python=3 package1 package2 ...&lt;/PRE&gt;

&lt;P&gt;Then, when you want to switch python versions, just do&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;source deactivate

source activate py3&lt;/PRE&gt;

&lt;P&gt;Or on Windows, assuming &amp;lt;installation_path&amp;gt;\Scripts is on your path&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;deactivate

activate py3&lt;/PRE&gt;

&lt;P&gt;I hope that helps.&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 20:53:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100055#M481</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2016-11-04T20:53:00Z</dc:date>
    </item>
    <item>
      <title>Hi Rick,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100056#M482</link>
      <description>&lt;P&gt;Hi Rick,&lt;/P&gt;

&lt;P&gt;To activate the root environment in Windows, you'll need to navigate to the install folder for Intel Distribution for Python on your installation disk. &amp;nbsp;If it is in C:/, then it should look like the following (assuming the Python 2.7 variant):&lt;/P&gt;

&lt;P&gt;Run the following:&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;c:\IntelPython27\Scripts&amp;gt;activate&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;After running activate, you should get this: (root) c:\IntelPython27\Scripts&amp;gt;Python&lt;/P&gt;

&lt;P&gt;Notice the (root) designation that should show up after the activate command is run.&lt;/P&gt;

&lt;P&gt;If you are using a bash-like prompt on Windows, you'll need to do&amp;nbsp;&lt;SPAN style="font-size: 13.008px;"&gt;c:\IntelPython27\Scripts&amp;gt; source activate&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;From there, you've enabled the Intel Distribution for Python and can run your commands or scripts in the enabled shell.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2016 17:01:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100056#M482</guid>
      <dc:creator>DavidLiu</dc:creator>
      <dc:date>2016-11-07T17:01:04Z</dc:date>
    </item>
    <item>
      <title>Rick,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100057#M483</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Rick,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Continuum has released updates for conda as well, so I would recommend running "conda update conda" to get the latest release if you are having trouble with environment activation.&lt;/P&gt;

&lt;P&gt;Best, Todd&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2016 15:02:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100057#M483</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2016-11-08T15:02:12Z</dc:date>
    </item>
    <item>
      <title>1 -----&gt;  open windows</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100058#M484</link>
      <description>&lt;P&gt;1 -----&amp;gt;&amp;nbsp; open windows command prompt&lt;/P&gt;&lt;P&gt;2 ------&amp;gt; go to the location "&amp;nbsp; &amp;nbsp;w_pythoni3_p_2020.1.893\intelpython3\Scripts "&lt;/P&gt;&lt;P&gt;3.-----&amp;gt; find&amp;nbsp; windows batch file&amp;nbsp; named&amp;nbsp; --&amp;nbsp; "&amp;nbsp; activate&amp;nbsp;"&lt;/P&gt;&lt;P&gt;4. .-----&amp;gt; run it in windows command prompt directly&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. thats it.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 16:11:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/Python-Installation/m-p/1100058#M484</guid>
      <dc:creator>k__k</dc:creator>
      <dc:date>2020-05-25T16:11:18Z</dc:date>
    </item>
  </channel>
</rss>

