Installing Tensorflow - not supported wheel

前端 未结 7 2035
无人共我
无人共我 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:13

    I had the same problem after hours of searching, I found that to save yourself from installing error problem in tensorflow. The convenient way for installing tensorflow is by creating a virtual environment in Conda with python 3.5.2 and using Conda-forge. This is done by running this commands:

    1. conda create -n tensorflow python=3.5.2
    2. activate tensorflow
    3. conda config --add channels conda-forge
    4. conda install tensorflow

提交回复
热议问题