Error while import tensorflow module

后端 未结 6 1267
清酒与你
清酒与你 2020-12-02 01:04

I try to learn TensorFlow with Python. My problem is with import TF module. Here is my configuration: Python 3.6.1, Windows 7 (with MSVCP14

6条回答
  •  时光说笑
    2020-12-02 01:35

    Solution:-

    Don't suffer a lot. Simply downgrade your python version from 3.6.1 to 3.5.2 and

    install tensorflow again.. you need not to upgrade the package.

    "pip install tensorflow" will automatically download latest version (probably

    1.0.1)

    Steps:-

    Step 1:- conda search python

    Step 2:- conda install python=3.5.2

    Step 3:- pip install tensorflow

    Step 4:- import tensorflow as tf

    Horray!!.. It works..

    Hope you may not get the same error again!!

提交回复
热议问题