不能用pip安装Openvino
Cannot install Openvino with pip
我正在尝试安装 Openvino 以将 Keras 模型转换为推理引擎的表示。我是运行命令:
python3 openvino/tools/mo/mo_tf.py —model_13.h5/ --input_shape=\[180,180\]
这个returns错误:
from openvino.tools.mo.subprocess_main import subprocess_main
ModuleNotFoundError: No module named 'openvino'
我试过 pip install openvino
但始终得到:
ERROR: Could not find a version that satisfies the requirement openvino (from versions: none)
ERROR: No matching distribution found for openvino
为了确保 运行 脚本和安装 Openvino 的 python 版本相同,我试过:
python3 -m pip install openvino
mo_tf.py脚本的内容很简单:
#!/usr/bin/env python3
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
if __name__ == "__main__":
from openvino.tools.mo.subprocess_main import subprocess_main
subprocess_main(framework='tf')
有没有人看到这个问题并找到解决方法?
openvino最新版本为2021.4.2。 pip
的 The list of packages to download 包含适用于 Python 3.6-3.9 的软件包,适用于 Linux、英特尔 MacOS 和 Windows;仅提供 64 位平台的软件包。 Python 3.10 没有软件包,也没有源代码。
解决方案是compile from sources, or install with Docker or install from Anaconda。或者降级到 Python 3.9.
我正在尝试安装 Openvino 以将 Keras 模型转换为推理引擎的表示。我是运行命令:
python3 openvino/tools/mo/mo_tf.py —model_13.h5/ --input_shape=\[180,180\]
这个returns错误:
from openvino.tools.mo.subprocess_main import subprocess_main
ModuleNotFoundError: No module named 'openvino'
我试过 pip install openvino
但始终得到:
ERROR: Could not find a version that satisfies the requirement openvino (from versions: none)
ERROR: No matching distribution found for openvino
为了确保 运行 脚本和安装 Openvino 的 python 版本相同,我试过:
python3 -m pip install openvino
mo_tf.py脚本的内容很简单:
#!/usr/bin/env python3
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
if __name__ == "__main__":
from openvino.tools.mo.subprocess_main import subprocess_main
subprocess_main(framework='tf')
有没有人看到这个问题并找到解决方法?
openvino最新版本为2021.4.2。 pip
的 The list of packages to download 包含适用于 Python 3.6-3.9 的软件包,适用于 Linux、英特尔 MacOS 和 Windows;仅提供 64 位平台的软件包。 Python 3.10 没有软件包,也没有源代码。
解决方案是compile from sources, or install with Docker or install from Anaconda。或者降级到 Python 3.9.