<?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: 32Bit vs 64Bit- pip installs in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288634#M22359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;simple enough, should have thought of that.&lt;/P&gt;&lt;P&gt;in CMD&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;CD C:\Python27\ArcGISx6410.5\Scripts&lt;/P&gt;&lt;P&gt;pip install &amp;lt;package_name&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;this works thanks &lt;A href="https://community.esri.com/people/bixb0012"&gt;bixb0012&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Feb 2018 15:46:19 GMT</pubDate>
    <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
    <dc:date>2018-02-15T15:46:19Z</dc:date>
    <item>
      <title>32Bit vs 64Bit- pip installs</title>
      <link>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288632#M22357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am experiencing an issue with python installations 32bit and 64bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcMap 10.5.1 (uses 32bit) however I also installed the 64bit background processing. This is great however when I install 3rd party libraries via CMD "pip install &amp;lt;package_name&amp;gt;" it loads the libraries into the 32bit python when I try to import them into IDLE (uses 64bit now because of the background processing I installed) it fails for obvious reasons (its not there)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All pip installs go to the 32bit Python but I need them to hit the 64bit python because that's what ArcMap is using now.&lt;/P&gt;&lt;P&gt;the environment variables are still the same pointing to the 64bit instance of Python27 folder unless the background processing .exe's are in a different location? I assume I need to point the pip installs to the 64bit locations...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;successful import of 3rd party library in 32bit&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="396698" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/396698_Capture.PNG" style="width: 620px; height: 141px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;failed import into 64Bit python&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="396699" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/396699_pastedImage_2.png" style="width: 620px; height: 204px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: scrapy is just an example, same result for all libraries being installed via pip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 13:08:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288632#M22357</guid>
      <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
      <dc:date>2018-02-15T13:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: 32Bit vs 64Bit- pip installs</title>
      <link>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288633#M22358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There will be separate pip.exe files for both the 32- and 64-bit bundled Python installs.&amp;nbsp; Instead of just typing "pip," which is a bit of a lottery depending on how your path variables are constructed, type the full path to pip, whether the 32- or 64-bit install:&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;C:\&amp;gt;Python27\ArcGIS10.6\Scripts\pip.exe ....‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would install the package in both Python distributions; otherwise, you run the risk the code will run sometimes and not others depending on whether the 32- or 64-bit interpreter is being used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 15:36:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288633#M22358</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-02-15T15:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: 32Bit vs 64Bit- pip installs</title>
      <link>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288634#M22359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;simple enough, should have thought of that.&lt;/P&gt;&lt;P&gt;in CMD&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;CD C:\Python27\ArcGISx6410.5\Scripts&lt;/P&gt;&lt;P&gt;pip install &amp;lt;package_name&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;this works thanks &lt;A href="https://community.esri.com/people/bixb0012"&gt;bixb0012&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 15:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/32bit-vs-64bit-pip-installs/m-p/288634#M22359</guid>
      <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
      <dc:date>2018-02-15T15:46:19Z</dc:date>
    </item>
  </channel>
</rss>

