tflite-runtime
的当前版本为2.11.0
:
https://pypi.org/project/tflite-runtime/
以下是将tflite-runtime
下载到tmp
文件夹的测试:
mkdir -p /tmp/test
cd /tmp/test
echo "tflite-runtime == 2.11.0" > ./test.txt
pip3 download -r ./test.txt
以下是错误:
ERROR: Could not find a version that satisfies the requirement tflite-runtime==2.11.0 (from versions: none)
ERROR: No matching distribution found for tflite-runtime==2.11.0
以下是pip3版本:
# pip3 --version
pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
上面的pip3 download
有什么问题?为什么找不到最新版本?怎么修复?
2条答案
按热度按时间n9vozmp41#
tflite运行时2.11.0发布的软件包:https://pypi.org/project/tflite-runtime/2.11.0/#files
Python 3.7、3.8和3.9。只有Linux,不同的Intel和ARM 64位架构。没有Python 3.10,也没有源代码。
如果你不想compile from sources,那么使用Python 3.9。
cygmwpex2#
如果您查看https://pypi.org/project/tflite-runtime/上
tflite-runtime
的分类器,则仅支持Python版本3.7、3.8和3.9。您使用的是Python 3.10,因此pip
找不到与之匹配的包版本。