Skip to content

Commit

Permalink
fix installation elyra-ai#2834: pip install fails
Browse files Browse the repository at this point in the history
  • Loading branch information
leucir committed Jul 18, 2022
1 parent 3a3f21a commit 55b339b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Prior to version 3.1, the `elyra` package included all dependencies. Subsequent
If you use `pip`, install Elyra with:

```bash
pip3 install --upgrade elyra[all]
pip3 install --upgrade "elyra[all]"
```

If desired, you can install these Elyra extensions independently:
Expand Down Expand Up @@ -86,7 +86,7 @@ If desired, you can install these Elyra extensions independently:
If you use `conda`, install Elyra with:

```bash
conda install -c conda-forge elyra[all]
conda install -c conda-forge "elyra[all]"
```

**NOTE:**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ OS user has that symbol in its name (e.g. `user@domain.com`)

This happens when trying to install Elyra via the Z Shell. The Z shell is the default shell on macOS versions of Catalina or later. Ensure that the argument is surrounded by single quotes as follows - this is not necessary when running on bash.
```
pip install --upgrade 'elyra[all]'
pip install --upgrade "elyra[all]"
```
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Elyra is a set of AI-centric extensions to JupyterLab Notebooks.
getting_started/tutorials.md
getting_started/getting-help.md
getting_started/changelog.md
getting_started/troubleshooting.md

.. toctree::
:maxdepth: 1
Expand Down Expand Up @@ -77,5 +78,4 @@ Elyra is a set of AI-centric extensions to JupyterLab Notebooks.
developer_guide/pipelines.md
developer_guide/pipeline-component-connectors.md
developer_guide/trackers.md
developer_guide/troubleshooting.md
developer_guide/release.md

0 comments on commit 55b339b

Please sign in to comment.