我在Raspberry Pi 3B板上安装了用于Tensorflow 1.14.0的.whl文件。当我运行以下命令时,
sudo pip2 install tensorflow-1.14.0-cp27-none-linux_armv7l.whl
我收到以下错误:
Could not find a version that satisfies the requirement tensorboard<1.15.0,>=1.14.0 (from tensorflow==1.14.0) (from versions: )
No matching distribution found for tensorboard<1.15.0,>=1.14.0 (from tensorflow==1.14.0)
我试图做一些其他的黑客攻击,例如:
sudo pip2 install --ignore-installed --upgrade Downloads/tensorflow-1.14.0-cp27-none-linux_armv7l.whl
甚至是这个:
curl http://bootstrap.pypa.io/get-pip.py | python
但错误仍然相同。
有人对此有任何想法吗,因为我在同一型号的另一个RPI上运行了相同的命令,并且该命令起作用了。