Skip to content

Instantly share code, notes, and snippets.

@nathanielobrown
Last active October 29, 2019 12:49
Show Gist options
  • Save nathanielobrown/7bc87793ab224645cef3e7ea3b0ca456 to your computer and use it in GitHub Desktop.
Save nathanielobrown/7bc87793ab224645cef3e7ea3b0ca456 to your computer and use it in GitHub Desktop.
script to install a jupyter lab launch agent on MacOS
cat <<EOF > ~/Library/LaunchAgents/com.$(whoami).jupyterlab.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>com.$(whoami).jupyterlab</string>
<key>ProgramArguments</key>
<array>
<string>$(which jupyter)</string>
<string>lab</string>
<string>--notebook-dir=/</string>
<string>--no-browser</string>
<string>--port</string>
<string>8002</string>
<string>--LabApp.password=$(python -c "from __future__ import print_function; from notebook.auth import passwd; print(passwd())")</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOF
launchctl load ~/Library/LaunchAgents/com.$(whoami).jupyterlab.plist
open http://localhost:8002/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment