<?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: Help to run Arcgis api for python and arcgis_learn on Google Colab! in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228093#M7966</link>
    <description>&lt;P&gt;Some discussion here&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-python-api/issues/928" target="_blank"&gt;Python api running in google colab · Issue #928 · Esri/arcgis-python-api (github.com)&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Nov 2022 21:18:24 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2022-11-02T21:18:24Z</dc:date>
    <item>
      <title>Help to run Arcgis api for python and arcgis_learn on Google Colab!</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228019#M7962</link>
      <description>&lt;P&gt;I have been trying for days without being able to find a solution. I want to try arcgis notebook samples on google Colab but unfortunately it is complicated to install every single package. I have followed the instructions, created a conda environment, but when I import the modules there is always something that goes wrong. Do you have a sample notebook that works on Colab to share? My intention is to install version 2.0.1 and use the super resolution notebook. Please help me or tell me if it is not possible so I will give up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 18:25:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228019#M7962</guid>
      <dc:creator>AsusSusa</dc:creator>
      <dc:date>2022-11-02T18:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help to run Arcgis api for python and arcgis_learn on Google Colab!</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228079#M7965</link>
      <description>&lt;P&gt;I've used Colab in the past and like it a lot, but I have not really used the arcgis api with it. If I understand your question right, you're trying to get the library on Colab? You can use a lot of linux commands within the code cells. So you can install libraries there using pip. Unfortunately, you need to run this everytime you open the notebook.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;!pip install arcgis==2.0.1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;When I tried this, it took a long time to resolve the dependencies, so you might try running pip for some of the dependency packages first with their version number to reduce the installation time.&amp;nbsp;&lt;A href="https://developers.arcgis.com/python/guide/system-requirements/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/python/guide/system-requirements/&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I think you're referring to this example:&amp;nbsp;&lt;A href="https://developers.arcgis.com/python/samples/increase-image-resolution-using-superresolution/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/python/samples/increase-image-resolution-using-superresolution/&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;It looks like you would also want to download a zip file. I like to store my files on the local google drive, and I think you should be able to do the same.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from google.colab import drive
drive.mount('/content/gdrive',force_remount=True)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;After you verify the account:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;%cd /content/gdrive/My Drive&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;or to some folder in your drive&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;%cd /content/gdrive/My Drive/SomeFolder&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This will change the working folder to your drive, so files are downloaded there.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Nov 2022 20:35:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228079#M7965</guid>
      <dc:creator>dslamb2022</dc:creator>
      <dc:date>2022-11-02T20:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help to run Arcgis api for python and arcgis_learn on Google Colab!</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228093#M7966</link>
      <description>&lt;P&gt;Some discussion here&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-python-api/issues/928" target="_blank"&gt;Python api running in google colab · Issue #928 · Esri/arcgis-python-api (github.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 21:18:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228093#M7966</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-11-02T21:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help to run Arcgis api for python and arcgis_learn on Google Colab!</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228446#M7970</link>
      <description>&lt;P&gt;I successfully managed to install api version 1.8.4 with torch=1.4.0 and fastai=1.0.60, thanks also to these commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-python-api/issues/1319" target="_blank"&gt;https://github.com/Esri/arcgis-python-api/issues/1319 &lt;/A&gt;&lt;/P&gt;&lt;P&gt;but I still can't install version 2.0.1.&lt;BR /&gt;Can anyone tell me which version of torch , torchvision and fastai,&amp;nbsp; &amp;nbsp;arcgis 2.0.1requires through pip install?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone for the support!!!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 18:25:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/help-to-run-arcgis-api-for-python-and-arcgis-learn/m-p/1228446#M7970</guid>
      <dc:creator>AsusSusa</dc:creator>
      <dc:date>2022-11-03T18:25:35Z</dc:date>
    </item>
  </channel>
</rss>

