|
221 | 221 | "metadata": {},
|
222 | 222 | "source": [
|
223 | 223 | "#### conda\n",
|
224 |
| - "Open a terminal application, navigate to the directory you want to work in and activate the conda `environment` you want to use with the ArcGIS API for Python. Install the API with the following command:\n", |
| 224 | + "Open a terminal application, navigate to the directory you want to work in, and activate the conda `environment` you want to use with the ArcGIS API for Python. Install the API with the following command:\n", |
225 | 225 | "\n",
|
226 | 226 | "``conda install -c esri arcgis``\n",
|
227 | 227 | "\n",
|
228 | 228 | "> Note: You can also use the `-n <environment_name>` flag to install the package into an environment of your choosing. \n",
|
229 | 229 | "\n",
|
230 | 230 | "\n",
|
231 | 231 | "\n",
|
232 |
| - "\n", |
| 232 | + "For more detials, read [here](https://developers.arcgis.com/python/guide/understanding-conda/).\n", |
233 | 233 | "\n",
|
234 | 234 | "#### Pipenv\n",
|
235 |
| - "[Pipenv](https://docs.pipenv.org/) is the official packaging tool for managing environments and installing packages from the [Python Package Index (PyPI)](https://pypi.python.org/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:\n", |
| 235 | + "[Pipenv](https://docs.pipenv.org/) is the official packaging tool for managing environments and installing packages from the [Python Package Index (PyPI)](https://pypi.python.org/pypi). To install the ArcGIS API for Python from PyPI in a new environment, create a new folder named `your-folder`. Then, open a terminal, and run `cd /path/to/your-folder` to change directories into `your-folder`. Next, enter the following command to simultaneously create a new environment and install the API in it:\n", |
236 | 236 | "\n",
|
237 | 237 | "``pipenv install arcgis``"
|
238 | 238 | ]
|
|
256 | 256 | "\n",
|
257 | 257 | "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`. \n",
|
258 | 258 | "\n",
|
259 |
| - "The above set of dependencies should allow you to establish a connection with your web GIS and perform a number of administrative and other tasks which involve processing on your GIS rather than in your Python kernel. Depending on your OS, this set up with minimal dependencies should take up about `50` mb in space. As your needs expand, you can then manually choose which dependencies to add to your Python environment. For instance, you can install `pandas` if you require to work with spatially enabled DataFrames and `jupyter` if you need the notebook IDE." |
| 259 | + "The above set of dependencies should allow you to establish a connection with your web GIS and perform a number of administrative and other tasks which involve processing on your GIS rather than in your Python kernel. Depending on your OS, this set up with minimal dependencies should take up about `50` mb in space. As your needs expand, you can then manually choose which dependencies to add to your Python environment. For instance, you can install `pandas` if you require to work with spatially enabled DataFrames and `jupyter`, if you need the notebook IDE." |
260 | 260 | ]
|
261 | 261 | },
|
262 | 262 | {
|
|
0 commit comments