Python3 TensorFlow Installation

Source: Internet
Author: User

Mac Python3 installation TensorFlow error:futures requires Python ' >=2.6, <3 ' but the running Python is 3.5.3

Correspondence Resolution Link: https://github.com/tensorflow/tensorflow/issues/16478

Same problem here on Ubuntu 16.04 with Python 3.5.
Clearly, Python 3 doesn ' t need futures. And with Python 2.7, using:
pip2 install tensorflow-gpu==1.5.0
It goes well.
Here's a solution for Python 3:
The error is occurred when installing the version of Futures 3.2.0 for Python 3. It's noticed that:

It should not being installed on Python 3, although there should is no harm in doing so, as the standard library takes preced ence over third party libraries.

First, install Futures 3.1.1:

pip3 install futures==3.1.1
Then:
pip3 install tensorflow-gpu==1.5.0
Does not add the --ignore-installed or-I

Python3 TensorFlow Installation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.