<?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: Arcpy 64 bit? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371275#M29376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How big is your file?&amp;nbsp; Python can upload file over 1 MB, do you mean 1 GB?&amp;nbsp; When using addItem() on ArcREST, have you tried setting the multipart to True? This will break your file into smaller parts and upload the smaller parts, then when it finishes, it will commit the item to AGOL and merge everything back together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have additional ArcREST issues, please log them here: &lt;A href="https://github.com/esri/arcrest/issues" title="https://github.com/esri/arcrest/issues"&gt;Issues · Esri/ArcREST · GitHub&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would download the 64-bit background geoprocessing install for your version of ArcGIS desktop and run your script against that.&amp;nbsp; Just make sure you use the 64-bit python.exe when calling your scheduled task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jan 2016 10:53:06 GMT</pubDate>
    <dc:creator>AndrewChapkowski</dc:creator>
    <dc:date>2016-01-27T10:53:06Z</dc:date>
    <item>
      <title>Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371273#M29374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new to Python, and am trying to write a script that would upload a geodatabase to AGOL at a scheduled interval. However, the 32 bit distribution of Python cannot handle the file size (over 1 MB), even when the multipart parameter of addItem is set to true. Through some investigation, I've learned that this is a limitation of Python32, and to do what I'd like to do I need the 64 bit version. I was trying to avoid having multiple installs of Python (as I said, I'm new to it, so the less complication, the better), but if I remove Python as it was installed with ArcGIS, I lose Arcpy, which I also need. So, my question is, does anyone know of a solution to this issue, or am I stuck dealing with multiple Python installs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: I should have mentioned, I'm using the ArcREST site package for my upload.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 19:58:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371273#M29374</guid>
      <dc:creator>MonicaShihadeh</dc:creator>
      <dc:date>2016-01-26T19:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371274#M29375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kevin Himba from esri did this blog post a few years ago&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.esri.com/esri/arcgis/2012/11/12/python-scripting-with-64-bit-processing/" title="https://blogs.esri.com/esri/arcgis/2012/11/12/python-scripting-with-64-bit-processing/"&gt;Python scripting with 64-bit processing | ArcGIS Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;and another post from esri&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.esri.com/esri/supportcenter/2013/07/29/64-bit-vs-32-bit-python-explained/" title="https://blogs.esri.com/esri/supportcenter/2013/07/29/64-bit-vs-32-bit-python-explained/"&gt;64-bit vs. 32-bit Python explained | Support Services Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Python changes in ArcGIS Pro it is now version 3.4.x&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/arcpy/get-started/python-migration-for-arcgis-pro.htm" title="https://pro.arcgis.com/en/pro-app/arcpy/get-started/python-migration-for-arcgis-pro.htm"&gt;Python migration for ArcGIS Pro—ArcPy Get Started | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;however, the line does point out&lt;/P&gt;&lt;P&gt;&lt;SPAN class="ph" style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif;"&gt;ArcGIS Pro&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt; uses Python 3.4. This is a significant change from other ArcGIS products including ArcGIS for Desktop, ArcGIS for Server, and ArcGIS Engine that have used (and will continue to use) releases in the Python 2 line&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;I will leave it to you to decide your future configuration from you current installation.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 20:16:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371274#M29375</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-01-26T20:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371275#M29376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How big is your file?&amp;nbsp; Python can upload file over 1 MB, do you mean 1 GB?&amp;nbsp; When using addItem() on ArcREST, have you tried setting the multipart to True? This will break your file into smaller parts and upload the smaller parts, then when it finishes, it will commit the item to AGOL and merge everything back together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have additional ArcREST issues, please log them here: &lt;A href="https://github.com/esri/arcrest/issues" title="https://github.com/esri/arcrest/issues"&gt;Issues · Esri/ArcREST · GitHub&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would download the 64-bit background geoprocessing install for your version of ArcGIS desktop and run your script against that.&amp;nbsp; Just make sure you use the 64-bit python.exe when calling your scheduled task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 10:53:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371275#M29376</guid>
      <dc:creator>AndrewChapkowski</dc:creator>
      <dc:date>2016-01-27T10:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371276#M29377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I apologize... you are correct, it is just over 1 GB. I am using multipart as true, but I was getting an error. After some searching, I found this: &lt;A href="https://github.com/Esri/ArcREST/issues/138" title="https://github.com/Esri/ArcREST/issues/138"&gt;addByPart has size limitiation in Windows · Issue #138 · Esri/ArcREST · GitHub&lt;/A&gt;&amp;nbsp; which identifies a 1 GB limit on the addItem command using Python 32 bit. I've since switched to the 64 bit distribution and installed Background Geoprocessing, but then I was getting compatibility errors with arcpy.&amp;nbsp; I've reinstalled PythonWin into the folder for the background geoprocessing install of Python, rather than the standard install, and so far it seems to be working, but I am getting some other errors I need to work through that are unrelated to this post. It seems if you want to access 32 bit arcpy with 64 bit Python, you have to run it through Arc's install rather than the general 64 bit Python, just as you said. Thanks for the info!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2016 19:17:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371276#M29377</guid>
      <dc:creator>MonicaShihadeh</dc:creator>
      <dc:date>2016-01-29T19:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371277#M29378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;hi Esri staff,&lt;/P&gt;&lt;P&gt;hi fellow users,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm facing the same 64bit issue when running a Py script that utilizes Network Analyst CF solver on a 100k-feature GDB. The standalone script crashes when reaching 1.3Gb of RAM; when I run it from within ArcCatalog 10.2.2, it works like a charm... but I can't (interactively or not) think of passing any arguments to it and then scheduling its execution; that's why I'm stuck on wanting to run it in a CMD console.&lt;/P&gt;&lt;P&gt;I first tried to give 32bit Python process a little bit more of RAM setting the LARGEADDRESSAWARE flag to true (&lt;A href="http://gisgeek.blogspot.fr/2012/01/set-32bit-executable-largeaddressaware.html"&gt;GIS Geek&lt;/A&gt;). Nothing changed.&lt;/P&gt;&lt;P&gt;I've then installed the 64bit BG Geoprocessing, modified the %PATH% and %PYTHONHOME% values but no way I can't make the script run as I get the following errors below:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;D:\FTP_SIG\VECTEUR\IDLIST\Scripts\CalcListDef\Test&amp;gt;&lt;STRONG&gt;C:\Python27\ArcGISx6410.2\python.exe&lt;/STRONG&gt; CalcListDef_NO_CMD.py VOIE NO DIFF TEST&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "CalcListDef_NO_CMD.py", line 17, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import arcpy&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\__init__.py", line&amp;nbsp; 21, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from arcpy.geoprocessing import gp&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\geoprocessing\__init__.py", line 14, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from _base import *&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\geoprocessing\_base.py", line 14, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import arcgisscripting&lt;BR /&gt;&lt;STRONG&gt;ImportError: DLL load failed: %1 n'est pas une application Win32 valide&lt;/STRONG&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hence my question: is there any 64bit version of arcpy library out there or a way to rebuild the 32bit version (haha) or any other simplier solution (scheduling the execution of a Python script via ArcCatalog.exe!) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your replies!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Yann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 16:48:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371277#M29378</guid>
      <dc:creator>YannKACENELEN</dc:creator>
      <dc:date>2016-09-20T16:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy 64 bit?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371278#M29379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/354521_pastedImage_1.png" style="width: 620px; height: 348px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sir i am getting this error after importing 64 bit geoprocessing and unable to work can you suggest any resolution. i am using arcgis 10.5 on windows 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 May 2017 18:16:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-64-bit/m-p/371278#M29379</guid>
      <dc:creator>SandeepKumar11</dc:creator>
      <dc:date>2017-05-30T18:16:09Z</dc:date>
    </item>
  </channel>
</rss>

