MacOS下安装Tensorflow-GPU

MacOS下安装Tensorflow-GPU

2018年12月3日

安装配置好cuda再进行下列步骤

第一步:打开终端,创建环境

$ conda create -n tensorflow_gpu python=2.7

第二步:激活环境:

$ source activate tensorflow_gpu

第三步;安装tensorflow

  pip install tensorflow-gpu

第四步:测试

  (1)运行python环境
  (2)执行以下测试脚本
    >>>import tensorflow as tf
    >>>foo = tf.constant('Hello, TensorFlow!')
    >>>sess = tf.Session()
    >>>print(sess.run(foo))
   (3)测试结果:
    Hello, TensorFlow!

你可能感兴趣的:(深度学习)