Move .ipynb using Notebook Web Interface IP

After creating the .ipynb file in the root directory of / , how can you move this .pynb file to a deeper directory, i.e. /subdirectory using web interface ?

+6
source share
5 answers

Starting Sep-21 2015, there is no direct function that supports file transfer. However, there is an easy way around this problem. (*)

  • Select the file you want to move.
  • Click Rename
  • Add a new path to the beginning of the file name.
  • Click OK

What is it. You must find your file in a new path.

(*) https://github.com/jupyter/notebook/issues/471

+15
source

This is a kind of workaround, but you can do it:

Jupyter notebook

  • Go to the directory where you want to put the file in
  • Click Click Here
  • Find file and upload
+1
source

Go to this problem and solve it:

  • Create a new folder on jupyter laptops.
  • Go to the folder / directory and click the "Download" button, which is located next to the "Create" button.
  • As soon as you click โ€œDownloadโ€, your PCโ€™s explorer window will open, now just find where your jupyter notebooks are stored on your local computer and download them to the desired file / directory.

Although this does not technically move your python files to the correct directory, it makes a copy in that directory. So the next time you can be more organized and just click on the specific directory you want and create / edit / view the files you have selected, instead of searching through your home directory.

0
source

Duplicate the notebook and delete the original, it was my workaround.

0
source

Ipython 5.1: 1. Create a new folder - with IPython, New, Folder running, select the "Untitled folder" just created, rename it (and remember the name!). 2. Go to the file you want to move, move, enter the new directory name on the command line Note. If the folder exists, skip 1. Note. If you want to leave a copy in the original directory, Duplicate and then move.

0
source

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


All Articles