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

Siavash Sakhavi

10/09/2023, 1:26 AM
Hi Everyone, Is it possible to visualize kedro pipelines inside the terminal when you have managed instances? Our compute is on Azure and we won't be able to visualize via kedro-viz
m

marrrcin

10/09/2023, 7:09 AM
1. Export pipeline to JSON
kedro viz --no-browser --pipeline __default__ --save-file pipeline.json
(note that you have to wait until the file is created on your own and then cancel the execution as this is not just an export command) 2. Use kedro-viz where you can run it with
kedro viz --load-file pipeline.json
y

Yetunde

10/09/2023, 7:46 AM
Do you have access to a notebook in this managed instance? Maybe this would work, if you do?
s

Siavash Sakhavi

10/12/2023, 8:56 AM
@marrrcin we can try this.
@Yetunde I'm using VScode but I could also use Azure to run the notebook. I'll try this as well.