Skip to content

Commit

Permalink
Update prerequisite version information (#2809)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitzler authored Jun 29, 2022
1 parent 80ce40f commit 8ab787a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions docs/source/developer_guide/development-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ This section describes the steps necessary to build Elyra in a development envir
#### Requirements

* [Python 3 Miniconda](https://docs.conda.io/en/latest/miniconda.html)
* [NodeJS 16+](https://nodejs.org/en/)
* [Node.js 16+](https://nodejs.org/en/)
* [Yarn](https://yarnpkg.com/lang/en/docs/install)

### Setting up your development environment

* Install Miniconda
Download and install a [Python 3 version of Miniconda](https://docs.conda.io/en/latest/miniconda.html) according to your Operating System

* Create a new Python environment
* Create a new Python environment using a version that is [supported by Elyra](../getting_started/installation.html#prerequisites).

```
conda create -n <env-name> python
```
The python version of your environment will match the miniconda version you installed. You can override the default by explicitly setting `python=3.7`, for example.
The Python version of your environment will match the miniconda version you installed. You can override the default by explicitly setting `python=3.10`, for example.
* Activate the new environment
Expand All @@ -46,15 +46,15 @@ Download and install a [Python 3 version of Miniconda](https://docs.conda.io/en/
* Verify your miniconda environment
```
python --version
which python # Displays current python path
pip3 --version
which pip3
python --version # should yield a version that is supported by Elyra
which python # displays current `python` path
pip3 --version # should be a recent version to avoid build issues
which pip3 # displays current `pip` path
```
Python path must be under miniconda envs folder.
Confirm pip3 location matches where miniconda is installed.
* Install NodeJS
* Install a version of Node.js that is [supported by Elyra](../getting_started/installation.html#prerequisites).
```
conda install -y -c conda-forge/label/main nodejs
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The Elyra [JupyterLab extensions](https://jupyterlab.readthedocs.io/en/stable/us
### Prerequisites

* [Node.js 16+](https://nodejs.org/en/)
* [Python 3.x](https://www.python.org/downloads/)
* [Python 3.7](https://www.python.org/downloads/) (or later)

JupyterLab dependencies:
- Elyra >= 2.0.0 requires JupyterLab 3.x
Expand Down

0 comments on commit 8ab787a

Please sign in to comment.