Hacker News new | past | comments | ask | show | jobs | submit login

What is the difference between the two? Googling it shows some comparisons between jupyter lab vs notebook but I can't find anything on plain jupyter.



Jupyter is the protocol to communicate between a frontend and a backend.

Jupyter notebooks is an interactive notebook that implements that protocol.

Do you know what also implements the protocol? VS Code. And doesn't have any of the stupid problems that the Jupyter notebooks do.


Are you saying that VS Code also lets you do all of the "Run just this cell" that notebooks do?


Yes.

In VS Code if you do as below:

#%%

print("my python print")

#%%

Then you can run it as a cell. Crucially however, note that those delimiters are ALSO valid python code. So you just version as with everything else.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: