You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 24, 2018. It is now read-only.
I'm writing a tutorial + kernel for my favorite language, TaQL. I'd like to redirect tmpnb directly to the notebook, instead of presenting users with the Jupyter browser first (so exactly the Nature use case). Where would I specify this? Since jupyter launches with --no-browser, I cannot specify it as a command line option to jupyer. I'm using start-notebook.sh, etc.
If this is the wrong place to ask this, please point to a better place. Thanks!
The text was updated successfully, but these errors were encountered:
As long as the notebook will always be in the same place, there's a --redirect-uri option to tmpnb (orchestrate.py).
docker run --net=host -d -e CONFIGPROXY_AUTH_TOKEN=$TOKEN \
-v /var/run/docker.sock:/docker.sock \
jupyter/tmpnb python orchestrate.py \
--image='jupyter/nature-demo' \
--redirect-uri='/notebooks/Nature.ipynb' \ # This is assumed to be a path after /user/whatever/
--command="jupyter notebook --NotebookApp.base_url={base_path} --ip=0.0.0.0 --port {port}"
I'm writing a tutorial + kernel for my favorite language, TaQL. I'd like to redirect tmpnb directly to the notebook, instead of presenting users with the Jupyter browser first (so exactly the Nature use case). Where would I specify this? Since jupyter launches with
--no-browser
, I cannot specify it as a command line option tojupyer
. I'm usingstart-notebook.sh
, etc.If this is the wrong place to ask this, please point to a better place. Thanks!
The text was updated successfully, but these errors were encountered: