Skip to content

Commit 2d3454b

Browse files
committed
fix typos in module names and update instructions
1 parent 8d2dc78 commit 2d3454b

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

guide/01-getting-started/install-and-set-up.ipynb

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
"cell_type": "markdown",
227227
"metadata": {},
228228
"source": [
229-
"#### conda\n",
229+
"### conda\n",
230230
"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",
231231
"\n",
232232
"``conda install -c esri arcgis``\n",
@@ -235,7 +235,7 @@
235235
"\n",
236236
"For more detials, read [here](https://developers.arcgis.com/python/guide/understanding-conda/).\n",
237237
"\n",
238-
"#### Pipenv\n",
238+
"### Pipenv\n",
239239
"[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",
240240
"\n",
241241
"``pipenv install arcgis``"
@@ -253,12 +253,14 @@
253253
" - `six`\n",
254254
" - `requests`\n",
255255
" - This library has its own dependencies that must be included\n",
256-
" - `requests_toolbelt`\n",
256+
" - `requests-toolbelt`\n",
257257
" - `requests_ntlm`\n",
258258
" - This library has its own dependencies that must be included\n",
259-
" - `ntlm_auth`\n",
259+
" - `ntlm-auth`\n",
260260
"\n",
261-
"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",
261+
"To install the API with no dependencies, simply add the `--no-deps` flag to any install command:\n",
262+
" * `conda install -c esri arcgis --no-deps` \n",
263+
" * `pip install arcgis --no-deps`\n",
262264
"\n",
263265
"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."
264266
]
@@ -398,7 +400,7 @@
398400
"cell_type": "markdown",
399401
"metadata": {},
400402
"source": [
401-
"### Installation for older versions"
403+
"## Install for older versions"
402404
]
403405
},
404406
{
@@ -412,7 +414,7 @@
412414
"cell_type": "markdown",
413415
"metadata": {},
414416
"source": [
415-
"# Install deep learning dependencies"
417+
"## Install deep learning dependencies"
416418
]
417419
},
418420
{
@@ -478,7 +480,7 @@
478480
"\n",
479481
"After that, metapackage can be installed using the command below:\n",
480482
"\n",
481-
"```conda install -c esri arcgis_learn python=3.7```\n",
483+
"```conda install -c esri arcgis_learn=2.1.0 python=3.9```\n",
482484
"\n",
483485
"Note: Python version 3.6 and 3.8 are also supported with this command."
484486
]

0 commit comments

Comments
 (0)