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

后端 未结 8 1999
北海茫月
北海茫月 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:37

    I got the same issue and I was able to solve it by installing 1.3 version rather than using 1.4 of tensorflow. Use the following command to do so.

     pip3 install tensorflow==1.3.0
    

提交回复
热议问题