欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决“read error”问题

程序员文章站 2022-07-14 17:09:48
...

问题描述

在虚拟环境下(tf_gpu_env)安装opencv的时候,使用之前的指令

pip install opencv-contrib-python

报错

解决“read error”问题

ERROR: Could not install packages due to an EnvironmentError: ("read error: Error([('SSL routines', 'ssl3_get_record', 'decryption failed or bad record mac')],)",)
 

解决方法

首先安装yum

sudo apt install yum

然后使用yum安装openssl

sudo yum -y install openssl

安装完成

解决“read error”问题

再输入指令

pip install opencv-contrib-python

开始安装

解决“read error”问题