Tensorflow install fails with “compiletime version 3.5 of module does not match runtime version 3.6”

后端 未结 8 1961
北海茫月
北海茫月 2021-02-04 01:51

I tried installing from pip:

pip3 install --user --no-cache https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.4.0-cp36-cp36m-linux_x86_64.whl


        
相关标签:
8条回答
  • 2021-02-04 02:39

    RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6

    This is a known issue, which is got prioritized and likely to be fixed soon. Right now the workaround is to use python 3.5.

    UPDATE:

    The issue has been fixed in the nightly tensorflow builds: "tf-nightly and tf-nightly-gpu now has a python3.6 binary built from scratch for Linux."

    I.e., the following command should work with python 3.6:

    # tf-nightly or tf-nightly-gpu
    pip3 install tf-nightly
    

    Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX

    This warning comes from the fact that the default tensorflow distributions are compiled without CPU extensions support (more on this here). If you want to get a CPU optimized tensorflow package, your only option is to build it yourself. It's a bit tedious, but absolutely doable. The build will produce the wheel file, which you can install with just

    pip3 install /path/to/the/tensorflow.whl
    

    But if you just want to suppress the warning, this will do:

    import os
    os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
    
    0 讨论(0)
  • 2021-02-04 02:44

    I encountered the same problem and I fixed it by:

    pip install --ignore-installed tensorflow
    

    The problem occurred because I complied a local version of tensorflow (to enable some CPU features) with python 3.5 earlier. I installed python 3.6 recently and the new tensorlfow already supported those CPU features, so I just installed the official version.

    Update:

    After some update of tensorflow the approach above doesn't work any more.

    Another workaround is using virtual environment such as anaconda to create a python3.5 environment:

    conda create -n py35 python=3.5
    source activate py35
    pip install tensorflow
    

    To work with ipython or jupyter notebook, be sure to install ipykernel inside the virtual environment:

    pip install ipykernel
    
    0 讨论(0)
提交回复
热议问题