Is it possible to navigate to the parent directory in the jupyter tree?

I usually start jupyter from a new bash terminal:

~$ jupyter notebook

and then go through the tree to the files I want to work in.

I just did it from a terminal that already worked in a different way:

~/blah/blah/blah$ jupyter notebook

and realized that this directory was becoming home to jupyter. I wanted to work in a file located at ~/blah/thingy/luis.ipynb, but could not find my path.

How to navigate a directory tree up in a jupyter laptop?

+6
source share
2 answers

As explained in https://github.com/ipython/ipython/issues/7751 , it is not possible to go to the parent directory for security reasons:

, , ​​ API- .

, GitHub.

+7

edwinksl, . . Https://github.com/jupyter/notebook/issues/2032.

luis.ipynb - Jupyter Notebook, Jupyter Notebook:

ln -s ~/blah/thingy/luis.ipynb ~/blah/blah/blah/

. Https://www.howtogeek.com/297721/how-to-create-and-use-symbolic-links-aka-symlinks-on-a-mac/.

0

All Articles