Home > Blockchain >  Is there a way to visualize a Jupyter Notebook without executing it?
Is there a way to visualize a Jupyter Notebook without executing it?

Time:12-17

I want to view the jupyter notebook in without having to execute, I mean no to open it and iteratively execute commands, just to see it as if it were a pdf or something like that.

I ask this because every time a want to see some code in the notebook I have to go to the specific directory and run the comand jupyter notebook and wait until it starts to be able to open the proper file.

CodePudding user response:

If you are using Macos, give this a shot

Found in this thread: A way to quick preview .ipynb files

CodePudding user response:

You can convert your notebook to html (or other formats) via File -> Download as -> html

CodePudding user response:

You can view it nicely in PyCharm as well.

CodePudding user response:

You can see them dropping the file on VS Code too.

  • Related