Where does Jupyter Notebook save files?
Config files are stored by default in the ~/. jupyter directory.
Your code is saved locally on your PC, it is not shared to public nor removed upon uninstalling anconda from your PC. simply you can locate your code by typing in you jupyter notebook pwd which stands for print working directroy.
Jupyter Notebook files are saved as you go. They will exist in your directory as a JSON file with the extension . ipynb . You can also export Jupyter Notebooks in other formats, such as HTML.
You can open existing Jupyter Notebook files (. ipynb) in the Jupyter Notebook dashboard by clicking on the name of the file in the dashboard (e.g. filename. ipynb ).
So let's get going and get this done. Go to the folder location C:\Users\YOUR_USERNAME\. jupyter and open the file named, jupyter_notebook_config.py in any text editor. Uncomment the key string by deleting the # sign and in single quotes type the location of your custom startup folder and save the changes.
- save the csv file in your directory. i.e where you store the file.
- ///// code//// csv.file=pd.read_csv('directory/ csv stored file name') csvfile.
You can save a notebook to a location of your choice by using the "File" -> "Download as" -> "Notebook (. ipynb)" option from the menu. Alternatively you can start your notebook server from a different directory and it will save all notebooks to that directory.
- Open the notebook you want to download.
- Click File.
- Click Download As.
- Choose a file format, then download your notebook.
- launch Anaconda Powershell Prompt.
- type cd yourfolder to move the working directory to the folder of your choice.
- type jupyter notebook and it will start the server from your folder.
- Install from Firefox Addons site.
- Drag and drop . ipynb files into firefox.
- alternatively you can also open notebook from menu-> file -> open file.
Does Jupyter Notebook use local resources?
Connecting to a Jupyter notebook server running on your local machine can provide many benefits. With these benefits come serious potential risks. By connecting to a local runtime, you are allowing the Colaboratory frontend to execute code in the notebook using the local resources on your machine.
Once you've entered your specific folder with Windows Explorer, you can simply press ALT + D, type in cmd and press Enter. You can then type jupyter notebook to launch Jupyter Notebook within that specific folder.

The Jupyter notebook web application is based on a server-client structure. The notebook server uses a two-process kernel architecture based on ZeroMQ, as well as Tornado for serving HTTP requests. By default, a notebook server runs locally at 127.0. 0.1:8888 and is accessible only from localhost .
With GPU environments, you can reduce the training time needed for compute-intensive machine learning models you create in a notebook. With more compute power, you can run more training iterations while fine-tuning your machine learning models.