我正在尝试通过pip3安装旧版本的tensorflow(2.1.0)
pip3 install tensorflow==2.1.0
无法正常工作,找不到2.2之前的版本。
现在,我尝试通过GitHub进行此操作。 我尝试过:
pip3 install git+https://github.com/tensorflow/tensorflow.git@v2.1.0
pip3 install git+https://github.com/tensorflow/tensorflow.git@releases/tag/v2.1.0
它们都不起作用,它们都冻结一分钟,然后返回:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-req-build-8t5bnpgl/setup.py'
有人对此有很好的选择吗?我想直接通过pip3做到这一点。使用Ubuntu 20.04 LTS。
答案 0 :(得分:1)
tensorflow
2.1.0未发布适用于Python 3.8的wheel,您可能拥有Python 3.8。降级到Python 3.7或install tensorflow
from sources。