How to obtain Jupyter Notebook's path?

前端 未结 4 2162
礼貌的吻别
礼貌的吻别 2021-01-04 21:20

Is there a function to obtain a Notebook\'s path?

I\'ve Googled a little on the subject but didn\'t find a simple way to do it... I want to obtain the Notebook\'s p

4条回答
  •  太阳男子
    2021-01-04 21:59

    TLDR: You can't

    It is not possible to consistently get the path of a Jupyter notebook. See ipython issue #10123 for more information. I'll quote Carreau:

    Here are some reasons why the kernel (in this case IPython):

    • may not be running from single file
    • even if one file, the file may not be a notebook.
    • even if notebook, the notebook may not be on a filesystem.
    • even if on a file system, it may not be on the same machine.
    • even if on the same machine the path to the file may not make sens in the IPython context.
    • even if it make sens the Jupyter Protocol has not been designed to do so. And we have no plan to change this abstraction in short or long term.

    Your hack works in most cases and is not too bad depending on the situation.

提交回复
热议问题