Select to view content in your preferred language

Unable to install ArcGIS API for Python

1375
1
Jump to solution
04-17-2023 07:18 PM
Labels (1)
JadedEarth
Frequent Contributor

I'm using ArcGIS Pro version 3.1.4.  I have multiple GPUs on my machine.

I've created my virtual environment for ArcGIS API for Python.  In the instructions from here.

Since I used miniconda3, I activated my environment using Miniconda3 command prompt.  To install arcgis Python API, I typed:

(myEnv) C:\>  conda install -c esri arcgis

But I get this error:

"UnsatisfiableError: The following specifications were found to be incompatible with each other:

Output in format: Requested package -> Available versions"

Does anyone know why?

Thanks.

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
JadedEarth
Frequent Contributor

The correct instruction for installing can be found here

    conda install -c esri arcgis_learn=2.1.0 python=3.9

 

If you get an error that it can't find module 'chardet' just pip-install it: 

     pip install chardet

and then do conda install the arcgis_learn again.

View solution in original post

0 Kudos
1 Reply
JadedEarth
Frequent Contributor

The correct instruction for installing can be found here

    conda install -c esri arcgis_learn=2.1.0 python=3.9

 

If you get an error that it can't find module 'chardet' just pip-install it: 

     pip install chardet

and then do conda install the arcgis_learn again.

0 Kudos