openvino安装小记

使用的是Linux版本安装完整包,这个是官方安装说明:https://docs.openvinotoolkit.org/latest/_docs_install_guides_installing_openvino_linux.html

简单记录一下问题:

1.使用xmanager想要用GUI脚本,可惜一直没有成功,只能选择使用非图形界面安装,基本一路默认安装下去就可以第一部分安装成功了

2.安装其他依赖时,各种失败,下载不到安装包,发现服务器是过代理的,于是关闭代理,安装成功(后来知道那几天代理服务器大姨妈了。。。。)

3.配置模型优化,安装install_prerequisites_tf.sh,报错:TypeError: getresponse() got an unexpected keyword argument 'buffering',以及下面一堆。。。。。。别急,看最后的错误,TypeError: unsupported operand type(s) for -=: 'Retry' and 'int',然后发现是因为pip版本过低,查看pip3 -V,然后升级pip版本sudo pip3 install --upgrade pip,问题解决。

4.报错:ERROR: Could not install packages due to an EnvironmentError: ("Connection broken: ConnectionResetError(104, 'Connection reset by peer')", ConnectionResetError(104, 'Connection reset by peer')),安装networkx失败,手动pip3 install networkx可以解决问题

之后就是按照官方说明,测试demo确认成功。

有新的使用心得会更新,以上。

猜你喜欢

转载自blog.csdn.net/f120854632/article/details/93721352