ArcGIS API for Python installation with CONDA does not found packages

3966
2
Jump to solution
02-22-2018 05:44 AM
Cristian_Galindo
Occasional Contributor III

Hello fellows,

I want to install the ArcGIS API for Python , I proceed as state at https://developers.arcgis.com/python/guide/install-and-set-up/#Install-using-Anaconda-for-Python-Dis...

but get  the following error:

conda install -c esri arcgis
Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:
  - arcgis
  - xlsxwriter
Use "conda info <package>" to see the dependencies for each package.

then I tried the following command:

conda install arcgis
Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

  - arcgis

Current channels:

  - https://repo.continuum.io/pkgs/main/win-64
  - https://repo.continuum.io/pkgs/main/noarch
  - https://repo.continuum.io/pkgs/free/win-64
  - https://repo.continuum.io/pkgs/free/noarch
  - https://repo.continuum.io/pkgs/r/win-64
  - https://repo.continuum.io/pkgs/r/noarch
  - https://repo.continuum.io/pkgs/pro/win-64
  - https://repo.continuum.io/pkgs/pro/noarch
  - https://repo.continuum.io/pkgs/msys2/win-64
  - https://repo.continuum.io/pkgs/msys2/noarch

I check for the info of conda:

conda info

     active environment : base
    active env location : C:\Users\CGLondono\AppData\Local\Continuum\anaconda2
            shell level : 1
       user config file : C:\Users\CGLondono\.condarc
 populated config files :
          conda version : 4.4.10
    conda-build version : 3.4.1
         python version : 2.7.14.final.0
       base environment : C:\Users\CGLondono\AppData\Local\Continuum\anaconda2  (writable)
           channel URLs : https://repo.continuum.io/pkgs/main/win-64
                          https://repo.continuum.io/pkgs/main/noarch
                          https://repo.continuum.io/pkgs/free/win-64
                          https://repo.continuum.io/pkgs/free/noarch
                          https://repo.continuum.io/pkgs/r/win-64
                          https://repo.continuum.io/pkgs/r/noarch
                          https://repo.continuum.io/pkgs/pro/win-64
                          https://repo.continuum.io/pkgs/pro/noarch
                          https://repo.continuum.io/pkgs/msys2/win-64
                          https://repo.continuum.io/pkgs/msys2/noarch
          package cache : C:\Users\CGLondono\AppData\Local\Continuum\anaconda2\pkgs
                          C:\Users\CGLondono\AppData\Local\conda\conda\pkgs
       envs directories : C:\Users\CGLondono\AppData\Local\Continuum\anaconda2\envs
                          C:\Users\CGLondono\AppData\Local\conda\conda\envs
                          C:\Users\CGLondono\.conda\envs
               platform : win-64
             user-agent : conda/4.4.10 requests/2.18.4 CPython/2.7.14 Windows/10 Windows/10.0.16299
          administrator : False
             netrc file : None
           offline mode : False

What I am missing???

1 Solution

Accepted Solutions
Cristian_Galindo
Occasional Contributor III

Another try:

  1. Install Anaconda 3
  2. create an environment:
    conda create -n arcgis python=2.7
  3. Install the package
    conda install -c "Esri" ArcGIS

The funny thing is that it install Python 3.5.3....

View solution in original post

0 Kudos
2 Replies
Cristian_Galindo
Occasional Contributor III

Another try:

  1. Install Anaconda 3
  2. create an environment:
    conda create -n arcgis python=2.7
  3. Install the package
    conda install -c "Esri" ArcGIS

The funny thing is that it install Python 3.5.3....

0 Kudos