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.
Solved! Go to Solution.
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.
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.