在docker的ubuntu镜像系统中执行安装TensorFlow,给出如下错误,求解答

错误提示:
tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.
已经安装了相应的python版本和相应的python-env,尝试了好多次也不好用,求解答

使用下面的命令试试

 conda install -c https://conda.anaconda.org/jjhelmus tensorflow

参考文章:

也可以使用pip:
1. 确认pip的版本在9以上

pip -V # 查看版本
pip install --upgrade pip --user # 如果不是9以上的版本,就更新
  1. pip安装tensorflow pip install tensorflow-gpu --user 或cpu版本 pip install tensorflow --user

上一个格式没调好, 重新发一下。
2. pip安装tensorflow:

#gpu版本
pip install tensorflow-gpu --user 
#cpu版本
pip install tensorflow --user 

python依赖会自动安装。