how to install tensorflow on anaconda python 3.6

前端 未结 12 1945
滥情空心
滥情空心 2020-11-29 21:38

I installed the new version python 3.6 with the anaconda package. However i am not able to install tensorflow. Always receive the error that

tensorflow_gpu-1.0.0rc2

12条回答
  •  抹茶落季
    2020-11-29 21:47

    UPDATE: TensorFlow supports Python 3.6 on Windows since version 1.2.0 (see the release notes)


    TensorFlow only supports Python 3.5 64-bit as of now. Support for Python 3.6 is a work in progress and you can track it here as well as chime in the discussion.

    The only alternative to use Python 3.6 with TensorFlow on Windows currently is building TF from source.

    If you don't want to uninstall your Anaconda distribution for Python 3.6 and install a previous release you can create a conda environment for Python=3.5 as in: conda create --name tensorflow python=3.5 activate tensorflow pip install tensorflow-gpu

提交回复
热议问题