1. 從C盤中找出jupyter所在的路徑:C:\Users\10731.jupyter
    • 如果找不到它在哪裡,可以打開Anaconda Prompt。
    • 在(base)輸入 jupyter notebook —generate-config

    image.png

    • 得到的就是jupyter所在路徑。
    1. 找到該路徑下的 jupyter_notebook_config.py 檔案,然後用記事本將它開啟。

    CTRL+F 搜尋 c.NotebookApp.notebook , 找到紅框框圈起來的這行。
    image.png

    1. 將原始的 # c.NotebookApp.notebook_dir = ‘’ 的 # 刪去,並在引號裡加入想讓 jupyter notebook 開啟的位置路徑。
    2. 最後,重新啟動 jupyter notebook 就大功告成啦!

    參考網址:https://allen108108.github.io/blog/2019/10/08/%E6%9B%B4%E6%94%B9%20jupyter%20notebook%E8%B5%B7%E5%A7%8B%E8%B7%AF%E5%BE%91/