<?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: How to download 'external' python packages/versions to ArcGIS Pro cloned environment in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1495129#M84775</link>
    <description>&lt;P&gt;I clone the environment in Pro and use &lt;STRONG&gt;PyCharm&lt;/STRONG&gt; to install new packages. This has been working reliably for years.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2024 23:29:59 GMT</pubDate>
    <dc:creator>MicZatorsky_AEC</dc:creator>
    <dc:date>2024-06-19T23:29:59Z</dc:date>
    <item>
      <title>How to download 'external' python packages/versions to ArcGIS Pro cloned environment</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494462#M84711</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Is there a way one can download packages that are not within the Esri package manager?&lt;/P&gt;&lt;P&gt;For example, I want to download the latest version of selenium. According to the package manager, this installed version is 3.141, which is miles behind the current version I would like (&lt;STRONG&gt;4.21.0&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="colinB_0-1718726772121.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/107315i30693955041DAB12/image-size/medium?v=v2&amp;amp;px=400" role="button" title="colinB_0-1718726772121.png" alt="colinB_0-1718726772121.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I try and download selenium through the python command prompt:&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN class=""&gt;conda install -c esri selenium&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;I get the same issue. Which is obvious since it is doing the above, just through the command prompt.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;So I am wondering how I can download packages etc. that are not within this Esri library . Ideally I would like to avoid using pip because I am trying to get other people to download things on their machines, so the less steps they have to download the better. But I understand if that is not possible. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 16:13:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494462#M84711</guid>
      <dc:creator>colinB</dc:creator>
      <dc:date>2024-06-18T16:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to download 'external' python packages/versions to ArcGIS Pro cloned environment</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494500#M84714</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;conda install &lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;-c defaults selenium&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;conda install selenium --no-pin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;didn't work, so that leaves&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://github.com/conda-forge/selenium-feedstock" target="_blank"&gt;conda-forge/selenium-feedstock: A conda-smithy repository for selenium. (github.com)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;which is going to be complicated for the casual user, leaving you to decide whether the current version is really necessary or to decide whether "newer must be better"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 17:28:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494500#M84714</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-06-18T17:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to download 'external' python packages/versions to ArcGIS Pro cloned environment</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494580#M84721</link>
      <description>&lt;P&gt;I usually deal with issues like this by running separate conda environments for the newer modules and leaving arcpy to live in company of its out of date versions.&lt;/P&gt;&lt;P&gt;Are you scraping a web page to pull data from it?&lt;/P&gt;&lt;P&gt;so instead of a single loop&lt;/P&gt;&lt;P&gt;for url in urls:&lt;/P&gt;&lt;P&gt;&amp;nbsp; pull data from url&lt;/P&gt;&lt;P&gt;&amp;nbsp; process data&lt;/P&gt;&lt;P&gt;You have to break it up and use two environments&lt;/P&gt;&lt;P&gt;&amp;nbsp; conda activate selenium&lt;/P&gt;&lt;P&gt;&amp;nbsp; for url in urls:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pull data from url&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; save it to a file&lt;/P&gt;&lt;P&gt;&amp;nbsp; conda activate arcpy&lt;/P&gt;&lt;P&gt;&amp;nbsp; for fc in fcs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; process data from fc&lt;/P&gt;&lt;P&gt;This is the Esri way anyhow, saving data at every stage to a temporary file.&lt;/P&gt;&lt;P&gt;I did a lot of scraping data like this from state web sites for health data during covid and it was much easier to have a minimal conda environment pulling the data on a schedule and then the data was always just available to process in arcgis tools.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 19:32:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494580#M84721</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2024-06-18T19:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to download 'external' python packages/versions to ArcGIS Pro cloned environment</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494923#M84749</link>
      <description>&lt;P&gt;I'm actually in the same boat. I wanted to login to our land titles registry and match up freely available parce numbers with the corresponding title numbers so I could populate my maps. Ideally I'd like to keep it all packaged up neatly in ArcGIS Pro but I'm thinking I might end up grabbing my data outside of pro, putting it into a table and then manipulating the table in Pro. If you do figure it out let us know how you did it. I got the old version installed once, likely by luck, then I uninstalled it and now I can't get either the old or new version installed.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 13:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1494923#M84749</guid>
      <dc:creator>Ryan-SCDA</dc:creator>
      <dc:date>2024-06-19T13:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to download 'external' python packages/versions to ArcGIS Pro cloned environment</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1495129#M84775</link>
      <description>&lt;P&gt;I clone the environment in Pro and use &lt;STRONG&gt;PyCharm&lt;/STRONG&gt; to install new packages. This has been working reliably for years.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 23:29:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-download-external-python-packages-versions/m-p/1495129#M84775</guid>
      <dc:creator>MicZatorsky_AEC</dc:creator>
      <dc:date>2024-06-19T23:29:59Z</dc:date>
    </item>
  </channel>
</rss>

