0

我试图在我的系统上安装最新版本的 Opevino。我正在关注此文档:
https ://software.intel.com/en-us/articles/OpenVINO-Install-Windows

在我需要运行此批处理文件的步骤中: install_prerequisites.bat

我收到了这个错误:

C:\local\Intel\computer_vision_sdk\deployment_tools\model_optimizer\install_prerequisites>install_prerequisites.bat
Python 3.7.1
ECHO is off.
Collecting tensorflow==1.9.0 (from -r ..\requirements.txt (line 1))
  Could not find a version that satisfies the requirement tensorflow==1.9.0 (from -r ..\requirements.txt (line 1)) (from versions: )
No matching distribution found for tensorflow==1.9.0 (from -r ..\requirements.txt (line 1))
*****************************************************************************************
Warning: please expect that Model Optimizer conversion might be slow.
You can boost conversion speed by installing protobuf-*.egg located in the
"model-optimizer\install_prerequisites" folder or building protobuf library from sources.
For more information please refer to Model Optimizer FAQ, question #80.

我该如何解决这个错误?

附带说明一下,当我搜索此错误时,我发现它与 PIP 18 和 tensorflow 有关:TensorFlow not found using pip

4

2 回答 2

0

OpenVINO 不支持 Python 3.7,这也可以解释您的问题。

于 2018-12-14T15:40:35.067 回答
0

运行模型优化器需要带有 pip 的 Python 3.6.5。使用这些步骤安装正确版本的 Python 软件。

进入 Python 3.6.5 下载页面,点击 Windows x86-64 可执行安装程序下载可执行文件。该文件在您的下载文件夹中保存为 python-3.6.5-amd64.exe。

浏览下载 Python

双击该文件以启动安装。

确保屏幕顶部显示 Python 3.6.5(64 位)。

重要提示:在安装屏幕的底部,选择将 Python 3.6 添加到 PATH。

安装 Python 并选择环境变量选项

单击安装屏幕顶部附近的立即安装,然后完成安装。

安装完成后,单击关闭。

请确认,上述步骤已完成。

于 2018-12-20T10:13:41.027 回答