whl 文件在此平台上不受支持 - 我该如何解决?

时间:2021-07-07 12:32:28

标签: linux pip debian raspbian python-wheel

我目前使用 raspberry pi 桌面,在我的空笔记本电脑上运行 debian。

我想使用 tensorflow 官网的 tensorflow lite 解释器。

我输入 if (Input.touchCount > 0) { Touch touch = Input.GetTouch(0); // get first touch since touch count is greater than zero if (touch.phase == TouchPhase.Stationary || touch.phase == TouchPhase.Moved) { // get the touch position from the screen touch to world point Vector3 touchedPos = Camera.main.ScreenToWorldPoint(new Vector3(touch.position.x, touch.position.y, 10)); // lerp and set the position of the current object to that of the touch, but smoothly over time. transform.position = Vector3.Lerp(transform.position, touchedPos, Time.deltaTime); } } 并得到 $ python3 --version , 输入 Python 3.7.3 并得到 $ uname -a。这是我的平台信息。

并访问tensorflow lite解释器网站并下载名为
的兼容轮文件 Linux raspberry 4.19.0-13-amd64 #1 SMP Debian 4.19.160-2 (2020-11-28) x86_64 GNU/Linux

我终于输入了https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp37-cp37m-linux_x86_64.whl

我在我的工作中找不到任何奇怪的东西,我需要你的帮助来完成这项工作。

$ pip3 install https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp37-cp37m-linux_x86_64.whl 也不起作用。

0 个答案:

没有答案