Hi Everyone, Is it possible to visualize kedro pi...
# questions
s
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
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
Do you have access to a notebook in this managed instance? Maybe this would work, if you do?
s
@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.