Fina Silva-Santisteban
05/07/2021, 10:34 PMImportError: Using `prefect.tasks.jupyter` requires Prefect to be installed with the "jupyter" extra.
and when I try installing it by running pip3 install prefect[jupyter]
it returns
no matches found: prefect[jupyter]
My current workaround is to use Prefect API and to add that as dependency during flow registration
python_dependencies = ["prefect[jupyter]"]
flow.storage = Docker(...
python_dependencies=python_dependencies,
...)
Is there a way to pip install the jupyter things needed to run a jupyter task using Prefect Core only?Fina Silva-Santisteban
05/07/2021, 11:02 PMpip3 install "prefect[jupyter]"
, and that works fine!