By default when you install jupyter notebook (formally iPython), the product will point to Window's My Document folder. I find this to be less than optimal because My Documents can contain a mishmash of various documents. To change the start up directory, there is a run time option where you can specify a folder, but that is not a permanent solution. A better solution is to create a configuration file.
After Jupyter is installed (I used anacoda's distribution of Python 3.5), navigate to the folder containing the jupyter.exe
The ipython notebooks should now be saved in your new directory.
Copyright AJC
أكثر...
After Jupyter is installed (I used anacoda's distribution of Python 3.5), navigate to the folder containing the jupyter.exe
- Type the following:
jupyter notebook --generate-config
- This will generate an entry in your user profile:
~/.jupyter
- Edit the jupyter_notebook._config.py file and find
c.NotebookApp.notebook_dir
- Uncomment the entry and enter in your path
- Save any file changes and start jupyter
The ipython notebooks should now be saved in your new directory.
Copyright AJC
أكثر...