試想你訪問 Jupyter Notebook ,忽然忘記了訪問密碼,該怎麼作。經實踐,只需利用命令行從新設置下密碼便可。python
## step 1:終端輸入 jupyter notebook --generate -config ## step 2:終端輸入 jupyter notebook password # 按提示,輸入密碼 ## step 3:建立sh文件,文件全名爲start-pythonNotebook.sh,文件內容以下: jupyter notebook --no-browser --ip=0.0.0.0 --port=5002 ## step 4:終端輸入 chmod +x ./start-pythonNotebook.sh
reference:
Jupyter Notebook之web訪問密碼設定web