Ei kuvausta

Alan Chin 77b2217f46 Update generic component operator to support python 3.7 (#2727) 2 vuotta sitten
.github e29d2eb385 Validate runtime image environments in CI testing (#2721) 2 vuotta sitten
binder 27c09da1ee Remove use of legacy resolver in builds and documentation (#2654) 2 vuotta sitten
docs a59f8b0ec6 Bump NodeJS version requirement to v16 or higher (#2732) 2 vuotta sitten
elyra 77b2217f46 Update generic component operator to support python 3.7 (#2727) 2 vuotta sitten
etc 77b2217f46 Update generic component operator to support python 3.7 (#2727) 2 vuotta sitten
packages c31164f5fa Fix pipeline submit button reload bug (#2734) 2 vuotta sitten
scripts 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
tests 5345dc8384 Update node packages to fix security vulnerabilities (#2575) 2 vuotta sitten
testutils 3283f85323 Update to use JupyterLab 3.3.0rc0 (#2495) 3 vuotta sitten
.bumpversion.cfg 4d7462fc86 Prepare for next development iteration 4 vuotta sitten
.eslintrc.json b23548557a Add eslint rule for type-safe equality operators (#2475) 3 vuotta sitten
.gitattributes 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
.gitignore 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
.lintstagedrc 5a8c9ef3af Add front end linter (#296) 5 vuotta sitten
.prettierrc 5a8c9ef3af Add front end linter (#296) 5 vuotta sitten
CONTRIBUTING.md 792319f934 Update examples for verification step and first issue label (#2496) 3 vuotta sitten
LICENSE fa52ee426a Simplify R and Python icon svgs (#2705) 2 vuotta sitten
MANIFEST.in e7db8ef2eb Add Airflow provider package catalog connector (#2438) 3 vuotta sitten
Makefile 77b2217f46 Update generic component operator to support python 3.7 (#2727) 2 vuotta sitten
README.md a59f8b0ec6 Bump NodeJS version requirement to v16 or higher (#2732) 2 vuotta sitten
build_requirements.txt 8589e0605c Develop Elyra against the Jupyterlab source repo (#2709) 2 vuotta sitten
code-of-conduct.md 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
conftest.py 6921b2f95a Clean up tests that rely on component cache instances (#2652) 2 vuotta sitten
create-release.py 8f3686399e Add elyra documentation link in elyra-metadata help (#2731) 2 vuotta sitten
cypress.json b0faa0ff9a Add snapshot testing for pipeline files (#1792) 3 vuotta sitten
lerna.json f77e8a3d66 Prepare for next development iteration 2 vuotta sitten
lint_requirements.txt 720fb3663e Update linting to use black formatter (#2618) 2 vuotta sitten
package.json 5345dc8384 Update node packages to fix security vulnerabilities (#2575) 2 vuotta sitten
pyproject.toml 720fb3663e Update linting to use black formatter (#2618) 2 vuotta sitten
pytest.ini 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
readthedocs.yml 2e4e03661b Update Copyright headers with current year (#2390) 3 vuotta sitten
setup.cfg 70f3b58fb8 Remove hacking dependency, capture version snapshot prior to CI testing (#2671) 2 vuotta sitten
setup.py 8589e0605c Develop Elyra against the Jupyterlab source repo (#2709) 2 vuotta sitten
test_requirements.txt 70f3b58fb8 Remove hacking dependency, capture version snapshot prior to CI testing (#2671) 2 vuotta sitten
tsconfig.base.json 8589e0605c Develop Elyra against the Jupyterlab source repo (#2709) 2 vuotta sitten
tsconfig.json 992af4539a Fix failing pipeline integration tests (#1621) 3 vuotta sitten
yarn.lock 5345dc8384 Update node packages to fix security vulnerabilities (#2575) 2 vuotta sitten

README.md

PyPI version Anaconda-Server Badge Downloads Documentation Status GitHub Homepage Gitter

Elyra

Elyra is a set of AI-centric extensions to JupyterLab Notebooks.

Elyra currently includes the following functionality:

Elyra

The Elyra Getting Started Guide includes more details on these features. A version-specific summary of new features is located on the releases page.

Try Elyra

Using Binder

You can try out some of Elyra features using the My Binder service.

Click on a link below to try Elyra, on a sandbox environment, without having to install anything.

  • Launch latest stable version (Latest stable version - see the releases page for a new features summary)
  • Launch latest development version (Development version - expect longer image load time due to just-in-time build)

Using Docker

You can also try Elyra by running one of the docker images from Docker Hub:

  • elyra/elyra:latest has the latest released version installed.
  • elyra/elyra:x.y.z has a specific version installed.
  • elyra/elyra:dev is automatically re-built each time a change is committed to the master branch.

The command below starts the most recent development build in a clean environment:

docker run -it -p 8888:8888 elyra/elyra:dev 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:dev jupyter lab --debug

These should produce output similar to that below, where you can then find the URL to be used to access Elyra in your local browser.

    To access the notebook, open this file in a browser:
        file:///home/jovyan/.local/share/jupyter/runtime/nbserver-6-open.html
    Or copy and paste one of these URLs:
        http://4d17829ecd4c:8888/?token=d690bde267ec75d6f88c64a39825f8b05b919dd084451f82
     or http://127.0.0.1:8888/?token=d690bde267ec75d6f88c64a39825f8b05b919dd084451f82

Installation

Elyra can be installed from PyPI:

Prerequisites :

Optional :

JupyterLab support

  • JupyterLab 3.x is supported on Elyra 2.0.0 and above

Install Elyra from PyPI ( Elyra >= 3.7.0 ):

  pip3 install --upgrade "elyra[all]>=3.7.0"

Install fom Conda ( Elyra >= 3.7.0 ):

  conda install -c conda-forge "elyra[all]>=3.7.0"
  • For versions of Elyra prior to 3.7 jupyter lab build must be run after install to enable the extensions.

Install Elyra from PyPI ( Elyra >= 3.1.0 ):

  pip3 install --upgrade "elyra[all]>=3.1.0" && jupyter lab build

Install fom Conda ( Elyra >= 3.1.0 ):

  conda install -c conda-forge "elyra[all]>=3.1.0" && jupyter lab build

Install Elyra from PyPI ( Elyra < 3.1.0 ):

  pip3 install --upgrade "elyra>=2.0.1" && jupyter lab build

Install fom Conda ( Elyra < 3.1.0 ):

  conda install -c conda-forge "elyra>=2.0.1" && jupyter lab build
  • JupyterLab 2.x is supported on Elyra 1.0.0 and above

Install from PyPI:

  pip3 install --upgrade "elyra<2.0.0" && jupyter lab build

Install from Conda:

  conda install -c conda-forge "elyra<2.0.0" && jupyter lab build
  • JupyterLab 1.x is supported on Elyra 0.10.x and below

Install from PyPI:

  pip3 install elyra==0.10.3 && jupyter lab build

Verify Installation

Run the following commands to verify the installation. Note that in the example output below the [version] placeholder is displayed instead of an actual version identifier, which might change with every release.

jupyter server extension list

Should output:

Config dir: /.../.jupyter

Config dir: /.../etc/jupyter
    elyra enabled
    - Validating elyra...
      elyra  OK
    jupyter_lsp enabled
    - Validating jupyter_lsp...
      jupyter_lsp [version] OK
    jupyter_resource_usage enabled
    - Validating jupyter_resource_usage...
      jupyter_resource_usage [version] OK
    jupyter_server_mathjax enabled
    - Validating jupyter_server_mathjax...
      jupyter_server_mathjax  OK
    jupyterlab enabled
    - Validating jupyterlab...
      jupyterlab [version] OK
    jupyterlab_git enabled
    - Validating jupyterlab_git...
      jupyterlab_git [version] OK
    nbclassic enabled
    - Validating nbclassic...
      nbclassic  OK
    nbdime enabled
    - Validating nbdime...
      nbdime [version] OK

Config dir: /.../etc/jupyter

NOTE: If you don't see the Elyra server extension enabled, you may need to explicitly enable it with jupyter server extension enable elyra

jupyter labextension list

Should output:

JupyterLab [version]
/.../share/jupyter/labextensions
        nbdime-jupyterlab [version] enabled OK
        @jupyter-server/resource-usage [version] enabled OK (python, jupyter-resource-usage)
        @krassowski/jupyterlab-lsp [version] enabled OK (python, jupyterlab_lsp)
        @elyra/code-snippet-extension [version] enabled OK
        @elyra/code-viewer-extension [version] enabled OK
        @elyra/metadata-extension [version] enabled OK
        @elyra/pipeline-editor-extension [version] enabled OK
        @elyra/python-editor-extension [version] enabled OK
        @elyra/r-editor-extension [version] enabled OK
        @elyra/theme-extension [version] enabled OK
        @jupyterlab/git [version] enabled OK (python, jupyterlab-git)

Other labextensions (built into JupyterLab)
   app dir: /.../share/jupyter/lab

Starting Elyra

After verifying Elyra has been installed, start Elyra with:

jupyter lab

Getting Help

We welcome your questions, ideas, and feedback. Check the Getting Help section in the Getting Started guide to learn more about the channels you can use to get in touch with us.

Contributing to Elyra

If you are interested in helping make Elyra better, we encourage you to take a look at our Contributing page,
Development Workflow documentation, and invite you to attend our weekly dev community meetings.

Daily Dev Meetings

Join us for our daily scrum (except Thursdays) to discuss development items you're working on or have questions about. Everyone is welcome and participation is optional.

When: Every weekday except Thursdays at 8:30AM Pacific

Where: Webex

What: Current Milestone

Weekly Dev Community Meeting

Join us weekly to discuss Elyra development topics. Everyone is welcome and participation is optional.

When: Thursdays at 9AM Pacific

Where: Webex

What: Meeting Notes