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

后端 未结 6 1147
面向向阳花
面向向阳花 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:56

    The other answers are useful, but the question remains: why doesn't pip have the older version? Because older TensorFlow versions were not built for the Python version you are running. So pip can't find them.

    If you want pip to find them, use a python version which TensorFlow was built for. For example, TensorFlow 1.14.0 was built for Python3.7, as can be seen here.

提交回复
热议问题