Open Jupyter Notebook In A Folder

[Solved] Open Jupyter Notebook In A Folder | Julia - Code Explorer | yomemimo.com
Question : open jupyter notebook in a folder

Answered by : real-reindeer-zsct8bjym90d

jupyter notebook --notebook-dir=D:\

Source : https://stackoverflow.com/questions/55078484/open-jupyter-notebook-from-a-drive-other-than-c-drive | Last Update : Tue, 01 Feb 22

Question : set the root directory when starting jupyter notebooks

Answered by : charlesalexandre-roy

# To change the Jupyter Notebooks startup directory:
1. From the command line (shell) run: jupyter notebook --generate-config
2. View the config file at: ~/.jupyter/jupyter_notebook_config.py
3. Change the line: c.NotebookApp.notebook_dir = '' to	c.NotebookApp.notebook_dir = '/path/to/desired/startup/directory'

Source : https://stackoverflow.com/questions/35254852/how-to-change-the-jupyter-start-up-folder | Last Update : Thu, 17 Sep 20

Question : open jupyter notebook in a folder

Answered by : real-reindeer-zsct8bjym90d

use this line:
jupyter lab --notebook-dir=D:/

Source : | Last Update : Tue, 01 Feb 22

Question : how to open a jupyter notebook directly from a folder

Answered by : panicky-polecat-iqdjkltexxtm

navigate to your file's directory in the command line using cd ~/path/to/directory_of_file
type: jupyter notebook
press enter (of course)
it will launch a server from your directory and open a jupyter tab in your browser

Source : | Last Update : Sun, 04 Sep 22

Answers related to open jupyter notebook in a folder

Code Explorer Popular Question For Julia