Gergő Barta
Gergő Barta

Reputation: 149

Tensorflow installation error on Windows 7

I am just about to install tensorflow to Anaconda environment, but I have some problems. Once I put the following command

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.0-cp35-cp35m-win_x86_64.whl

I get the error message: tensorflow_gpu_1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform. Then I upgraded pip with this command:

pip install --upgrade pip

But nothing happened. I have python 3.5.2 and Anaconda 4.2.0 (64 bit).

Thanks in advance

Upvotes: 1

Views: 415

Answers (2)

user7733102
user7733102

Reputation: 1

I had a similar error on pip install. Tried the above and lots of files downloaded. But at the end got this error: IOError: [Errno 2] No such file or directory: 'c:\users\oskars~1.rie\appdata\local\temp\pip-crhbnr-build\setup.py

Upvotes: 0

Dean Fenster
Dean Fenster

Reputation: 2395

Install with amd64 instead of x86_64:

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.0-cp35-cp35m-win_amd64.whl

Upvotes: 1

Related Questions