Running comments on pull request for jupyter notebook

The Jupyter block is now displayed as html files on github, which is fantastic; however, if you want to leave a comment on the transfer request, I see only the option to do this on an unprocessed laptop. Does anyone know how you can leave comments on an html file?

If not, do people know about other services that let you comment on jupyter notebooks?

+9
source share
1 answer

The best option is to create a copy of your notebook in HTML format using nbconvert (or "Download as HTML") and add it to the repository with a raw notebook by adding a comment to the HTML version of the file.
Locally, you can see diff in HTML using the nbdime tool (but not PR comments).

0
source

Source: https://habr.com/ru/post/1683111/


All Articles