How to pip install old version of library(tensorflow)?

后端 未结 6 1100
面向向阳花
面向向阳花 2021-02-01 04:34

I\'m trying to install tensorflow r0.11. I tried

pip install tensorflow==r0.11
pip install tensorflow<0.12

But I get this error



        
6条回答
  •  花落未央
    2021-02-01 04:59

    If you want to install tensorflow r0.11, it means that you want to install the sources from a certain branch (r0.11). Therefore, you should follow the official installation instructions from tensorflow: https://www.tensorflow.org/install/install_sources:

    In case you want to install a "normal" release. then you can easily use the following command:

    pip install --upgrade tensorflow==1.3.0.
    

提交回复
热议问题