无法在 tensorflow-gpu-jupyter 的 docker 安装中运行 jupyter notebook

无法在 tensorflow-gpu-jupyter 的 docker 安装中运行 jupyter notebook

我按照这里的说明安装了 tensorflow docker 镜像:https://www.tensorflow.org/install/docker

我使用此命令提取图像docker pull tensorflow/tensorflow:latest-gpu-jupyter以安装启用 jupyter 的图像。

当我使用 运行图像时sudo docker run --runtime=nvidia -it --rm tensorflow/tensorflow:latest-gpu-jupyter,我得到了以下信息:To access the notebook, open this file in a browser: file:///root/.local/share/jupyter/runtime/nbserver-9-open.html Or copy and paste one of these URLs: http://(acc54e047054 or 127.0.0.1):8888/?token=26646d53421996f1ec27c65ca1bbeabb0fd8fadb2f7303e2

但是我无法使用 chrome 通过这两个 URL 访问笔记本。

我该怎么办?

答案1

控制台或浏览器中有任何错误消息吗?

您可以尝试使用以下命令运行 bash-它参数 an/bin/bash在末尾。然后使用 从容器内部手动运行 jupyter jupyter notebook --port=8888 --ip=0.0.0.0 --allow-root --no-browser

也许这会给你一些信息或者别的什么。

相关内容