jupyter notebook,docker 图片询问令牌
jupyter notebook, docker image asking token
我已经使用 docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook
下载了 jupyter/datascience-notebook
和 运行,现在 http://127.0.0.1:8888/?token=a5e7ab0debe441254f2268da2e3f179585a63eb22897056f
的页面正在请求令牌。不知道要输入什么,需要一些帮助。
据我记得当你 运行
docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook
正在生成一个新令牌(每次您 运行 都会有一个新令牌)并打印到命令行。您需要复制此令牌并将其粘贴到 URL:
http://127.0.0.1:8888/?token=<new_generated_token>
这也记录在案 here。
更新:
如果您运行正在安全网络中(而不是public)并且您想跳过令牌,则有一个different way到运行:
docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook start.sh jupyter notebook --NotebookApp.token=''
我已经使用 docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook
下载了 jupyter/datascience-notebook
和 运行,现在 http://127.0.0.1:8888/?token=a5e7ab0debe441254f2268da2e3f179585a63eb22897056f
的页面正在请求令牌。不知道要输入什么,需要一些帮助。
据我记得当你 运行
docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook
正在生成一个新令牌(每次您 运行 都会有一个新令牌)并打印到命令行。您需要复制此令牌并将其粘贴到 URL:
http://127.0.0.1:8888/?token=<new_generated_token>
这也记录在案 here。
更新:
如果您运行正在安全网络中(而不是public)并且您想跳过令牌,则有一个different way到运行:
docker run -it --rm --name ds -p 9999:8888 jupyter/datascience-notebook start.sh jupyter notebook --NotebookApp.token=''