Hi everyone, I’m having issues using jupyter tasks...
# ask-community
f
Hi everyone, I’m having issues using jupyter tasks with prefect core. When I try to run a jupyter task it returns
Copy code
ImportError: 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
Copy code
no matches found: prefect[jupyter]
My current workaround is to use Prefect API and to add that as dependency during flow registration
Copy code
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?
Ok I figured out that I wasn’t pip’ing correctly, sorry about that! 😅 The command should be
pip3 install "prefect[jupyter]"
, and that works fine!
👍 3
💪🏼 1