linux环境下tensorflow安装
时间: 2023-11-14 16:11:40 浏览: 102
tensorflow安装-不同操作系统环境下TensorFlow的安装指南与步骤
在Linux环境下,可以通过两种方式安装TensorFlow:通过pip安装预编译的whl文件或者从源码安装。如果选择通过pip安装预编译的whl文件,需要根据Python版本和CPU/GPU版本选择对应的whl文件进行安装,具体命令如下:
1. Python 2.7 // CPU版本:pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.4.0-cp27-none-linux_x86_64.whl
GPU版本:pip install https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.4.0-cp27-none-linux_x86_64.whl
2. Python 3.6 // CPU版本:pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.4.0-cp36-cp36m-linux_x86_64.whl
GPU版本:pip install https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.4.0-cp36-cp36m-linux_x86_64.whl
如果选择从源码安装,需要先安装JDK8,然后按照TensorFlow官方文档提供的步骤进行安装。
阅读全文