You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

ArcGIS Linux runs arcpy using wine [1]. Python is a simple wrapper in bash.

Step-by-step guide

  1. /arcgis/server/tools/python

    >>import arcpy, os
    >> sdList = os.listdir('c:/')
    >> print sdList
    ['Program Files', 'Program Files (x86)', 'ProgramData', 'Python27', 'users', 'windows



Python3 via Wine cmd

See [2] for running conda like Windows environment.

  1. $. /arcgis/server/framework/etc/arcenv
  2. $wine cmd
  3. cd c:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\Scripts
  4. conda create --clone arcgispro-py3 --prefix "Z:\home\arcgis\bin\Python\envs\test"

Python3 via wine only

  1. $wine ./server/framework/runtime/ArcGIS/bin/Python/envs/arcgispro-py3/python.exe
  2. $wine ./server/framework/runtime/ArcGIS/bin/Python/Scripts/conda.exe
ArcGIS Python doesn't include GDAL.

References

  1. https://www.linux.org/threads/running-windows-batch-files-on-linux.11205/
  2. https://enterprise.arcgis.com/en/server/latest/publish-services/windows/deploying-custom-python-packages.htm

  • No labels