A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.arcgis.com/python/guide/install-older-versions/ below:

Install and set up | ArcGIS API for Python

There are multiple ways in which you can experience the ArcGIS API for Python. The ArcGIS API for Python is distributed as a conda package named arcgis. Conda is a popular Python package and environment manager application that helps you install and update packages such as the ArcGIS API for Python and their dependencies.

See below for options to install both conda and the arcgis package:

Step 1: Get Conda Get Conda with ArcGIS Pro

Proceed to Using the API for instructions. ArcGIS Pro 2.1 and later releases ship with conda and the arcgis package pre-installed.

Proceed to Install with ArcGIS Pro Python Package Manager for instructions on installing the arcgis package. ArcGIS Pro 1.4 ships with conda installed.

Proceed to Install using Python Command Prompt for instructions on installing the arcgis package. ArcGIS Pro 1.3 ships with conda installed.

Get Conda with Anaconda for Python Distribution

Anaconda installs Python, conda for package management and many useful Python packages. Since the ArcGIS API for Python requires Python 3.5 or later, proceed to the Anaconda download page and download the appropriate 3x version of the Anaconda software:

Once the Anaconda software is installed, proceed to Install the arcgis package with the Anaconda for Python Distribution to install the API.

Step: 2 Install the arcgis package Install using ArcGIS Pro Python Package Manager

ArcGIS Pro 1.4 and later provide the Python Package Manager GUI to download and install any conda package. Access it through the ArcGIS Pro backstage area:

To use the API in different IDEs, proceed to Using the API

Install using Python Command Prompt
```

To use the API in different IDEs, proceed to Using the API

NOTE: Depending on how you installed Pro, you might have to start this prompt with elevated privileges.

Install using Anaconda for Python Distribution

Open a terminal application and install the API with the following command:

conda install -c esri arcgis

To use the API in different IDEs, proceed to Using the API

Install using pipenv or pip Pipenv

Pipenv is the official packaging tool for managing environments and installing packages from the Python Package Index (PyPI). To install the ArcGIS API for Python from PyPI in a new environment, create a new folder named your-folder. Open a terminal, and run cd /path/to/your-folder to change directories into your-folder. Then, enter the following command to simultaneously create a new environment and install the API in it:

pipenv install arcgis

After running this command, you will notice that a new file named Pipfile was created in your-folder. A Pipfile contains package information that represents a python environment. Open your terminal and make sure you are still in the your-folder directory; then, run pipenv shell. You have now activated your python environment, the environment that contains the arcgis package! You can run jupyter notebook or python in this environment to start using the API.

Pipenv differs from conda and other environment managers in that environments are specific to the folder that contains the Pipfile. In this way, pipenv's use of Pipfile is similar to how npm uses package.json. To learn more about installing and using pipenv, click here or here.

Tip: You can run any command in an environment without activating it by running pipenv run {insert_command_here} in a directory with a valid Pipfile.

Pip

Pip is the predecessor of pipenv, and can also be used to install packages from PyPI (but you must manage environments with seperate tools like virtualenv). To install the API with pip, open a terminal and enter the following command:

pip install arcgis
Disclaimer

You should avoid mixing conda with pipenv/pip: they are completely seperate package managers. It is recommended that you use conda to install the API if you are a beginner user. Read more about the differences here and here.

Note: when installing the ArcGIS API for Python with pipenv/pip, some dependencies may require Microsoft Visual C++ 14.0. If you see any errors related to this, either install the Microsoft Visual C++ tools or install the API without dependencies.

Install with minimum dependencies

Both conda install -c esri arcgis and pip install arcgis will install all of the dependencies outlined in the system requirements section. However, the API can function in a 'stripped down' state with only a few dependencies. This means you can manually manage the dependencies on your system if you don't want to use every feature of the API. As of v1.8.0 of the Python API, the minimum dependencies needed are:

To install the API with no dependencies, simply add the --no-deps flag to any install command, i.e. conda install -c esri arcgis --no-deps or pip install arcgis --no-deps. You can then manually choose which dependencies to add to your Python environment.

Install deep learning dependencies for arcgis.learn module

If you already have an environment with the arcgis package installed, you can further install its deep learning dependencies to take advantage of the arcgis.learn module. Some of the deep learning samples available here can be referenced to understand the workflow.

Install using the Python Command Prompt (ArcGIS Pro 2.5) or Anaconda

For opening Python Command Prompt navigate to
Start Menu > All Programs > ArcGIS > Python Command Prompt

Install the dependencies using the following command:

conda install -c esri -c fastai -c pytorch arcgis=1.8.1 scikit-image=0.15.0 pillow=6.2.2 libtiff=4.0.10 fastai=1.0.60 pytorch=1.4.0 torchvision=0.5.0 --no-pin

For TensorFlow support (optional), use the following command:

conda install -c esri -c fastai -c pytorch arcgis=1.8.1 scikit-image=0.15.0 pillow=6.2.2 libtiff=4.0.10 fastai=1.0.60 pytorch=1.4.0 torchvision=0.5.0 tensorflow-gpu=2.1.0 --no-pin

For Multispectral data support (optional and needed only for Anaconda users)

conda install gdal=2.3.3

Upgrade the arcgis package ArcGIS Pro 2.2

ArcGIS Pro 2.2 ships with the ArcGIS API for Python 1.4.1 installed. The initial ArcGIS Pro installation creates a default read-only conda environment named arcgispro-py3. To upgrade the ArcGIS API for Python package, use the Python Package Manager to create a new environment and then install the latest release of the ArcGIS API for Python:

ArcGIS Pro 2.1

ArcGIS Pro 2.1 ships with the ArcGIS API for Python 1.2.5 installed. To update to the newest release, proceed to to run the command below from either a Terminal window with the arcgispro-py3 environment active, or the Python Command Prompt:

    conda upgrade -c esri --no-pin arcgis
ArcGIS Pro 1.4 and 2.0.x Python Package Manager

Terminal Window or Python Command Prompt

Activate the environment containing the arcgis package and type:

conda upgrade -c esri arcgis
ArcGIS Pro 1.3

ArcGIS Pro 1.3 will install the ArcGIS API for Python 1.0 (the arcgis 1.0 package) release. To upgrade the arcgis package you would have to install a later release of ArcGIS Pro.

Using the API Start the Jupyter notebook installed with the API:

Windows:

jupyter notebook

macOS and Linux:

jupyter notebook

The Jupyter dashboard opens in a web browser. For instructions on using the Jupyter Notebook, refer to the how to use the notebook environment guide.

Test your install with jupyter notebook

From the Jupyter Notebook dashboard:

Enter the following lines of code. You should see a map draw as below:

from arcgis.gis import GIS
my_gis = GIS()
m = my_gis.map()
m

Learn more about the API using the guide and try out the samples.

Install as a Docker image

Docker is a popular containerization technology. Docker containers bundle software in a complete file system with everything that is needed to run it. Docker containers run the same regardless of your operating system. To learn more about docker, refer to the official documentation.

The ArcGIS API for Python is shipped as a Docker image which you can download and power up whenever you want to use the API. These images when spun up into containers, run in an isolated environment without making any changes to your local file system.

Follow the steps below to get Docker on your computer and run the API:

Install-Offline 1. While in a connected environment, download the appropriate software you'll need: 2. Configure Anaconda for use in the disconnected enviroment: 3. Verify the install:

NOTE: The Web GIS must have a Geocoder configured as a Utility Service to display a map. See here for details if your portal does not have one.

Full Conda documentation located here. For advanced users or those needing information on specific environments, see Configuration for options to configure various aspects of conda.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4