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

后端 未结 6 1157
面向向阳花
面向向阳花 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 05:07

    If you have your own library/packet on github/gitlab etc, you have to add tag to commit with concrete version of library e.g. v2.0 then you can install your packet

    pip install git+ssh://link/name/repo.git@v2.0
    

提交回复
热议问题