Hello,
I am trying to run my first pipeline with self hosted reana cluster.
The simple reana.yaml file is following:
version: 0.3.0
inputs:
parameters:
shrepo: https://github.com/arm2arm/starhorse_db.git
workflow:
type: serial
specification:
steps:
- environment: 'arm2arm/astro-aiko:latest'
commands:
- git clone "${shrepo}"
- pip install --no-cache-dir --no-deps -r starhorse_db/requirements.txt --user
- pip install papermill
This works without problem:
export REANA_WORKON=starhorse_db
reana-client validate
reana-client run -w starhorse_db
reana-client status
reana-client open -w starhorse_db.1 jupyter
But in the jupyter the python enviroment is different, not activated.
How to enable same enviroment in the project and the jupyter?