python pip3不能下载最新的tflite运行时间

xxe27gdn  于 2023-01-01  发布在  Python
关注(0)|答案(2)|浏览(309)

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有什么问题?为什么找不到最新版本?怎么修复?

n9vozmp4

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。

cygmwpex

cygmwpex2#

如果您查看https://pypi.org/project/tflite-runtime/tflite-runtime的分类器,则仅支持Python版本3.7、3.8和3.9。您使用的是Python 3.10,因此pip找不到与之匹配的包版本。

相关问题