Installing Tensorflow - not supported wheel

前端 未结 7 2026
无人共我
无人共我 2021-02-10 10:07

I have installed Python version 3.5 and 3.6 and anaconda.

The following error occures when trying to install tensorflow following the steps here https://www.tensorflow.o

7条回答
  •  悲&欢浪女
    2021-02-10 10:10

    Creating the tensorflow env without the correct python version did not work for me. So I had to do the following, which worked...

    >deactivate tensorflow # start by deactivating the existing tensorflow env
    >conda env remove -n tensorflow # remove the env
    
    >conda create -n tensorflow python=3.5
    >activate tensorflow
    

提交回复
热议问题