Environmental Error occurs while installing Tensorflow

后端 未结 2 1965
情深已故
情深已故 2021-01-27 11:20

When installing Tensorflow it said I was missing a file but i dont know how to fix it and or get that file

I have tried re-downloading python but I am still missing the

2条回答
  •  囚心锁ツ
    2021-01-27 11:31

    When installing Tensorflow it said I was missing a file but i don't know how to fix it and or get that file.

    Create a environment using anaconda.

    This Problem can be solved by execute the Below commands:

    conda update anaconda
    conda create -n tensorflow pip python=3.5
    conda install --force html5lib
    activate tensorflow
    pip install --ignore-installed --upgrade tensorflow
    conda install -c conda-forge tensorflow
    conda install jupyter
    

    Refer this https://www.tensorflow.org/tutorials

    Finally you can able to install Tensorflow.

    I hope it will help you.

提交回复
热议问题