Tensorflow installation error: not a supported wheel on this platform

后端 未结 13 1125
别跟我提以往
别跟我提以往 2020-11-29 01:53

when I try to install tensorflow by cloning from git, I run into the error \"no module named copyreg,\" so I tried installing using a virtualenv. However, I then run into th

13条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-29 02:35

    After activating the virtualenv, be sure to upgrade pip to the latest version.

    (your_virtual_env)$  pip install --upgrade pip
    

    And now you'll be able to install tensor-flow correctly (for linux):

    (your_virtual_env)$  pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.0-py2-none-linux_x86_64.whl
    

提交回复
热议问题