文件名称:tensorflow-1.2.1 python2.7 ubuntu centos 均可安装
文件大小:32.94MB
文件格式:WHL
更新时间:2020-12-16 19:05:54
tensorflow python2.7 ubuntu centos
tensorflow-1.2.1 python2.7 直接pip安装 pip install tensorflow-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl 相关依赖包自动下载 测试是否安装成功: import tensorflow as tf hello = tf.constant('Hello,Tensorflow!') sess = tf.Session() print sess.run(hello) 出现Hello,Tensorflow!即可