Skip to content

Latest commit

 

History

History

2020-09-18_JupyterCon-DAX

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

JupyterCon 2020

Introduction to Elyra: AI-centric extensions to JupyterLab

September 18th, 2020

Ways to run pipelines:

  • Try JupyterLab and Elyra on pre-built docker image: The command below starts a clean Elyra environment:
docker run -it -p 8888:8888 elyra/elyra:1.1.0 jupyter lab --debug

To make a local directory containing your Notebooks (e.g. ${HOME}/opensource/jupyter-notebooks/) available in your docker container, you can use a mount command similar to the following:

docker run -it -p 8888:8888 -v ${HOME}/opensource/jupyter-notebooks/:/home/jovyan/work -w /home/jovyan/work elyra/elyra:1.1.0 jupyter lab --debug