https://kedro.org/ logo
#questions
Title
# questions
m

Marc Gris

07/06/2023, 2:22 PM
Hi everyone, Is there some setting that could allow for
kedro jupyter notebook
to open notebooks directly in the IDE (vscode in my case) instead of in a browser ? Thx M.
d

datajoely

07/06/2023, 2:39 PM
You can just run these lines in a VS Code notebook
Copy code
%load_ext kedro.ipython
%reload_kedro <project_root>
m

Marc Gris

07/06/2023, 2:50 PM
Oh… Excellent ! Thx Joel 🙏 If it’s not already the case (in which case sorry for having missed it 😉 ) , it might be worth adding to in the documentation. Regards M
d

datajoely

07/06/2023, 2:51 PM
it’s in there 🙂
🤦‍♂️ 1
but we’d love to make this easier in VS Code world
👍 1
cc @Juan Luis
j

Juan Luis

07/06/2023, 2:59 PM
thanks for bringing this up @Marc Gris! it's indeed there https://docs.kedro.org/en/stable/notebooks_and_ipython/kedro_and_notebooks.html#managed-services but in a very bad place: IPython, Jupyter, "managed services" - none of that mentions VSCode
in fact I almost never use
kedro jupyter notebook
and prefer to do
%load_ext kedro.ipython
directly, feels more explicit to me and I do not depend on how I launched the editor
m

Marc Gris

07/06/2023, 3:02 PM
👍🏼 I’ve missed it indeed… 😅 But I must say that, for the newcomer, “Managed Service” did not catch my eyes… Terms such as “IDE” or “non-browser based” would probably have done the trick 🙂
j

Juan Luis

07/06/2023, 3:06 PM
exactly - I just opened an issue about it https://github.com/kedro-org/kedro/issues/2777
👍 2
👍🏼 1
m

Marc Gris

07/06/2023, 3:24 PM
Great thx 🙏🏼
2 Views