分享不用安裝 anaconda, 個別安裝 Jupyter Notebook 的方法
1. 到 Python 官網下載 Python安裝程式, 安裝時也要把 Python 路徑加入環境變數
2. 打開命令提示環境 (cmd.exe)
3. 執行 python -m pip install notebook
就可以安裝 jupyter notebook
4. 安裝完後 命令模式下執行 jupyter notebook 就可以了
另外分享如何設定 jupyter notebook 開啟時的預設目錄
1. 執行 jupyter notebook --generate-config
會產生設定檔 jupyter_notebook_config.py
2. 修改設定檔, 找 # c.NotebookApp.notebook_dir = ''
comment 拿掉, 把路徑設定進去
如改成
c.NotebookApp.notebook_dir = r'c:\python\work'
儲存後重新執行 jupyter notebook
這樣 Jupyter notebook 開啟預設目錄就會切換到 c:\python\work 下了