windows docker安装 tensorflow

  • 捣鼓好了windows docker安装,参考了楼上的许多信息。
    1. 安装docker
    2. 点开Docker Quickstart Terminal, 打开成功后:
        docker is configured to use the default machine with IP 192.168.99.100
    3. 安装tensorflow: docker run -d -p 8888:8888 -v /notebook:/notebook xblaster/tensorflow-jupyter
    4. 运行tensorflow-jupyter: docker run xblaster/tensorflow-jupyter
         会提示running at: http://0.0.0.0:8888,不知道为什么会是这个IP地址,用浏览器打开不了。然后替换成docker打开时的IP,http://192.168.99.100:8888就可以打开了。
    
    2016年4月17日 0 回复
  • jike_2156625 #26
     
          
    #25@jike_2156625
    请勿频繁提交............(⊙﹏⊙) 5. 运行example code,mnist参考资料:1, tensorflow官方文档;2,http://blog.csdn.net/yhl_leo/article/details/50614444 及其mnist的github:https://github.com/yhlleo/mnist,github中有input_data.py这个很重要的文件。

你可能感兴趣的:(tensorflow)