Mac の起動時に Jupyter ノートブック ページを開きたいと思います。具体的には、launchctl を使用して Jupyter ノートブックを起動します。
ただし、再起動後、Web ページには確認するパスワードまたはトークンが表示されました。
これは、私が High Sierra で使用する launchctl スクリプトです。わざわざトークンを入力するのは骨が折れる。再起動時にトークンの検証を無視することは可能jupyter notebook
ですか?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
<dict>
<key>Label</key>
<string>me.jupyter</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/jupyter</string>
<string>notebook</string>
<string>--no-browser</string>
<string>--port</string>
<string>9090</string>
<string>--notebook-dir</string>
<string>/Users/me/jupyter/</string>
</array>
<key>KeepAlive</key>
<true />
<key>RunAtLoad</key>
<true />
<key>StandardErrorPath</key>
<string>/Users/me/jupyter/jupyter-notebook.stderr</string>
<key>StandardOutPath</key>
<string>/Users/mejupyter/jupyter-notebook.stdout</string>
</dict>
</plist>