|
21 | 21 | " - [Install Using the Python Command Prompt](#Install-using-Python-Command-Prompt)\n", |
22 | 22 | " - [Install Using Anaconda for Python Distribution](#Install-using-Anaconda-for-Python-Distribution)\n", |
23 | 23 | " - [Install Using pip or pipenv](#Install-using-pipenv-or-pip)\n", |
24 | | - " - [Install without Dependencies](#Install-without-Dependencies)\n", |
| 24 | + " - [Install with minimum dependencies](#Install-with-minimum-dependencies)\n", |
25 | 25 | " - [Install deep learning dependencies for arcgis.learn module](#Install-deep-learning-dependencies-for-arcgis.learn-module)\n", |
26 | 26 | " - [Install using conda (Anaconda)](#Install-using-conda-(Anaconda))\n", |
27 | 27 | " - [Install using the Python Command Prompt (ArcGIS Pro 2.5)](#Install-using-the-Python-Command-Prompt-(ArcGIS-Pro-2.5)) \n", |
|
151 | 151 | "\n", |
152 | 152 | "> __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.\n", |
153 | 153 | "\n", |
154 | | - "### Install without Dependencies\n", |
| 154 | + "### Install with minimum dependencies\n", |
155 | 155 | "\n", |
156 | | - "Both ```conda install -c esri arcgis``` and ```pip install arcgis``` will install all of the dependencies outlined in the [system requirements](https://developers.arcgis.com/python/guide/system-requirements/) section. However, the API can function in a 'stripped down' state with only the ```six``` dependency. This means you can manually manage the dependencies on your system if you don't want to use every feature of the API. \n", |
| 156 | + "Both `conda install -c esri arcgis` and `pip install arcgis` will install all of the dependencies outlined in the [system requirements](https://developers.arcgis.com/python/guide/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:\n", |
157 | 157 | "\n", |
158 | | - "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, if any, to add to your Python environment.\n" |
| 158 | + " - `six`\n", |
| 159 | + " - `requests`\n", |
| 160 | + " - This library has its own dependencies that must be included\n", |
| 161 | + " - `requests_toolbelt`\n", |
| 162 | + " - `requests_ntlm`\n", |
| 163 | + " - This library has its own dependencies that must be included\n", |
| 164 | + " - `ntlm_auth`\n", |
| 165 | + "\n", |
| 166 | + "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." |
159 | 167 | ] |
160 | 168 | }, |
161 | 169 | { |
|
214 | 222 | "source": [ |
215 | 223 | "Navigate to Start Menu > All Programs > ArcGIS > Python Command Prompt\n", |
216 | 224 | "\n", |
217 | | - "Install the dependecies using the following command:\n", |
| 225 | + "Install the dependencies using the following command:\n", |
218 | 226 | "\n", |
219 | 227 | "```conda install -c esri arcgis fastai pillow scikit-image --no-pin```" |
220 | 228 | ] |
|
0 commit comments