TensorFlow | win10下使用docker安装tensorflow

官网安装教程




 

docker run -it tensorflow/tensorflow:latest-devel
python
    import tensorflow as tf
    hello = tf.constant('Hello, TensorFlow!')
    sess = tf.Session()
    print(sess.run(hello))

 

posted @ 2018-08-03 11:30  STUqza  阅读(210)  评论(0编辑  收藏  举报