I would like to extend jupyter by adding functionality, for instance comparing two notebooks, to a new tab like in the picture below. Is there any way to do it like this? Do you suggest any other way?
Thanks!!
Related
I can find many examples having simple button-like action, I'de like to know if this kind of view is possible via the vscode api.
I am following a course on Python and Math. As editor I use Jupyter notebooks in VS Code.
I am not able to eliminate (or hide) the time of execution shown in each cell. I searched in Settings, but did not find the relative option.
Could you help, please?
Thanks.
This now exists in VS Code's 'clickable' settings screen (as opposed to editing the settings.json file.
Search settings for the below, and select 'hidden' from the dropdown.
notebook.showCellStatusBar
Just put this parameter in the settings.json:
"notebook.showCellStatusBar": "hidden"
I have the same question.
I only found this enhancement issue on github.
It does seem like they did not think of a option to disable it.
For now just switch back to normal Jupyter notebooks.
I'd like to add a banner to every Jupyter instance that is spawned by my users via Jupyter Hub/Lab.
Something to the effect of Do not copy and paste code from the internet into this notebook.
How can I accomplish such a thing?
Thank you!
I have issues on jupyter notebook conversion. It looks fine on jupyter notebook. However if I convert it to html or upload to github, it displays like photo above.
Instead of vertical(scroll up and down), I have to scroll left and right and each cell are really narrowed.
Any suggestion?
Thanks in advance!
This is typical of a library you use emitting invalid HTML. I would suggest opening an issue or contacting the Jupyter mailing list to help you debug this as StackOverflow will not be the right place to have a back and forth.
You should be able to narrow down which library does that by:
- backup your notebook.
- Delete cells one and until notebook looks normal. (tip use nbconvert locally instead of uploading, and use python -m http.server)
- the last cell you delete have a issue.
It may be a bug in nbconvert but I doubt it.
wxWidgets provides for notebooks with multiple lines of tabs only on Windows platforms. Is there a simple way to provide similar functionality on GTK based platforms, or am I stuck with the only option being to create a customized notebook class that supports it?
As you say, you are stuck with the only option being to create a customized notebook class that supports it. GTK solves the "too many tabs" problem by providing left and right arrows with which you can page through the tabs.
Multiline tabs are a horrible idea anyway in my opinion. Take a look at these monstrosities.