Jupyter
January 6, 2024Less than 1 minute
Install Jupyter
pip install jupyter
Start notebook
jupyter notebook
Specify the startup folder
- Generate config
runjupyter notebook --generate-config
in cmd, generate config file~\.jupyter\jupyter_notebook_config.py
- Search
#c.NotebookApp.notebook_dir = ''
in this file - Replace with
c.NotebookApp.notebook_dir = '{Folder path}'
Allow remote access
assign the listen ip to c.NotebookApp.ip
assign the listen port to c.NotebookApp.port
assign password to c.NotebookApp.password