如何安装tensorflow? tensorflow-1.1.0-cp34-cp34m-win_amd64.whl不是此平台上支持的滚轮

时间:2017-05-06 20:53:23

标签: tensorflow

C:\用户\ Sudhit> pip install --ignore-installed --upgrade storage.googleapis.com/tensorflow/windows/cpu / ...

tensorflow-1.1.0-cp34-cp34m-win_amd64.whl不是此平台上支持的滚轮。

我如何知道我的平台支持哪种轮?

2 个答案:

答案 0 :(得分:0)

这里的某个人已经问过这个问题Tensorflow installation error: not a supported wheel on this platform

如果您使用的是conda,请使用以下命令安装tensorflow。

conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
\# or
\# pip install tensorflow-gpu

在Linux上

python2.7 -m pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl

答案 1 :(得分:0)

Tensorflow仅与64位版本的Python兼容。因此,请确保它是通过:

>python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

然后,简单地使用以下方法升级点子:

python -m pip install --upgrade pip

最后,安装tensorflow:

pip install tensorflow

完成!

您可以使用以下方法验证安装:

python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"