在Windows中使用TensorFlow

我正在尝试为我的windows 10configurationTensorFlow深度学习库。我使用以下链接进行configuration

在Windows中安装TensorFlow

以下是我的dockerterminal和窗口的输出。

从dockerterminal

在这里输入图像说明

从Windows命令提示符 在这里输入图像说明

现在我想问一下如何使用TensorFlow,因为在我看来,一切工作正常?

更新

现在我得到以下错误

在这里输入图像说明

Docker ps命令提供了以下输出

在这里输入图像说明

虚拟框状态

在这里输入图像说明

Python和TensorFlow在cmd内运行良好,但我无法启动Jupyton Notebook

在这里输入图像说明

注意日志的倒数第二行:

[... NotebookApp] The Jupyter Notebook is running at: http://[all ip addresses on your system]:8888/ 

由于您将-p 8888:8888标志传递给docker run ,因此可以在Windows中打开Web浏览器并连接到http://<ip address>:8888 (其中<ip address>是VirtualBox VM的IP,列出当你做docker-machine ls )得到一个Jupyter(IPython)笔记本,通过它你可以与Python和TensorFlow交互。