python2.7安装tensorflow_如何在Windows的Python 2.7上安装Tensorflow?

1586010002-jmsa.png

I try to install TensorFlow via pip (pip install tensorflow) but get this error

could not find a version that satisfies the requirement tensorflow (from versions: )

Is there a solution to this problem? I still wish to install it via pip

解决方案

Elaborating a bit on dirty_feri's answer as it's not quite up to date.

Tensorflow for Windows is only supported with Python 3.5 and Python 3.6 (since 1.2). As you are downloading via pip you will be receiving the latest 1.2 version so you should be able to run on 3.6.

There should be no need to use the Anaconda version of Tensorflow, the distribution is not supported and, if you are running anaconda, the pip version does just fine.

If you still require python 2.7 support for other projects then may I suggest the use of an environment manager like anaconda or virtualenv to allow you to have multiple versions of python running nicely at once.

Once you have a supported version of python installed you should be able to run pip install tensorflow and it should install in a few minutes.

Full installation instructions are available here: https://www.tensorflow.org/install/install_windows

### 回答1: 您可以按照以下步骤安装Python2.7TensorFlow1.4.: 1. 首先,确保您的计算机上已经安装Python2.7。如果没有安装,请从Python官方网站下载并安装。 2. 接下来,您需要安装TensorFlow1.4.。您可以使用pip命令来安装TensorFlow。在命令行输入以下命令: pip install tensorflow==1.4. 3. 等待安装完成后,您可以在Python导入TensorFlow并开始使用它。在Python输入以下命令: import tensorflow as tf print(tf.__version__) 如果输出的版本号为1.4.,则表示TensorFlow已经成功安装。 希望这可以帮助您安装Python2.7TensorFlow1.4.。 ### 回答2: Python是一种通用的高级编程语言,应用广泛,并且与开源技术相容。为了在Python使用TensorFlow,我们需要先安装TensorFlow库。本篇文章将会详细介绍如何安装python2.7下的TensorFlow1.4.0。 在开始安装TensorFlow之前,请确保您的系统已经安装python2.7版本。如果你没有安装python,那么你需要先下载并在电脑上安装python2.7。 步骤一:安装pip 在python2.7,pip是一个python包的管理工具,它可以帮助用户下载和安装Python程序包。 可以按照以下步骤安装pip: 1. 首先,从get-pip.py链接下载pip安装脚本 。 2. 打开cmd(命令行)并导航到下载脚本的路径。在命令提示符下键入 python get-pip.py 安装pip。 3. 等待几秒钟即可完成pip的安装。 步骤二:安装TensorFlow 接下来,我们将通过pip命令在python2.7安装TensorFlow。 1.打开命令行,输入 pip install tensorflow==1.4.0,可安装TensorFlow 1.4.0版本。安装TensorFlow的速度将会非常慢,根据网络速度不同,等待时间可能会不同。你会发现下载速度很慢,这是由于TensorFlow的体积较大,需要下载很多数据进来。 2.等待下载完成,你将看到类似如下的提示:Successfully installed tensorflow-1.4.0。这意味着TensorFlow已经成功安装到你的Python系统。 3.现在,你可以在python导入TensorFlow来验证它是否已经成功地安装。在python终端输入import tensorflow,然后按回车键,如果没有错误提示证明您的TensorFlow已经成功安装。 总结: TensorFlow已经成为了深度学习领域最受欢迎的工具库。因此,越来越多的开发工程师和研究人员使用TensorFlow来创建和训练更加精确的神经网络。本文从两个方面介绍了如何在python2.7环境下安装TensorFlow 1.4.0。简单易懂,容易操作。当你遇到TensorFlow安装问题,希望这篇文章可以给你带来帮助。 ### 回答3: 安装TensorFlow之前,需要确保电脑拥有合适版本的Python软件。TensorFlow支持 Python 2.7和3.3 ~ 3.6等多个版本,但现在官方已经不再支持2.7版本,实际使用应尽量使用3.5及以上版本。 1.首先需要安装pip。在命令行输入以下命令即可安装: $ sudo easy_install pip 2.在命令行输入以下命令安装TensorFlow: $ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.4.0-py2-none-any.whl 其,mac/cpu可更改为其他系统或GPU版本,py2指定Python2.x版本,none-any即表示不限制操作系统。 3.等待安装完毕后,可以在Python程序测试TensorFlow是否正常: $ python >>> import tensorflow as tf >>> hello = tf.constant('Hello, TensorFlow') >>> sess = tf.Session() >>> print(sess.run(hello)) 如果在Python输出Hello, TensorFlow,则表示安装成功。 同时,也可以进行以下测试: from __future__ import print_function import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() print(sess.run(hello)) a = tf.constant(10) b = tf.constant(32) print(sess.run(a+b)) # 输出为:Hello, TensorFlow! # 42 以上便是在Python2.7安装TensorFlow1.4.0方法,如需使用其他版本可在官方文档获取详细的安装步骤。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值