Skip to content

Instantly share code, notes, and snippets.

@Lyuji282
Created April 20, 2019 05:40
Show Gist options
  • Save Lyuji282/61513a3d5ae151fd08075a6aeb1ec230 to your computer and use it in GitHub Desktop.
Save Lyuji282/61513a3d5ae151fd08075a6aeb1ec230 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
jupyter contrib nbextension install --system &
declare -a jnl=( "collapsible_headings/main" )
jnl+=( "codefolding/main" )
jnl+=( "hinterland/hinterland" )
jnl+=( "notify/notify" )
jnl+=( "scratchpad/main" )
jnl+=( "hide_input_all/main" )
jnl+=( "toc2/main" )
jnl+=( "varInspector/main" )
for je in ${jnl[@]}; do jupyter nbextension enable ${je}; done
jupyter notebook --ip=0.0.0.0 --allow-root
jupyter notebook list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment