1

I created a Jupyter service in the Iguazio UI, opened it, and tried to run one of the pre-loaded demos. I'm getting an error saying that mlrun is not installed

JIST
  • 1,139
  • 2
  • 8
  • 30
Nick Schenone
  • 209
  • 1
  • 7

2 Answers2

0

To install the correct version of MLRun for your cluster, run the align_mlrun.sh script in your home directory in the Jupyter service. This will ensure that the server and client versions of MLRun are aligned

Nick Schenone
  • 209
  • 1
  • 7
0

You can install mlrun manually from terminal:

  • on-line installation (last version)

    pip install mlrun

  • on-line installation (specific version e.g. 1.2.0)

    pip install mlrun==1.2.0

  • on-line installation with proxy (specific version e.g. 1.2.0)

    pip install --proxy http://proxy-repo.prod:3128 mlrun==1.2.0

  • off-line installation (from source /v3io/bigdata/mlrun_dist/)

    pip install --no-index --find-links /v3io/bigdata/mlrun_dist/ mlrun

JIST
  • 1,139
  • 2
  • 8
  • 30