关于OpenCV for Python安装存在的问题

 

Windows操作系统下,在控制台执行

(1)Anaconda安装OpenCV库

出现无法定位程序输入点OPENSSL_sk_new_reserve于动态链接库错误

解决方法:

比较D:\anaconda\DLLs\目录下和D:\anaconda\Library\bin目录下的libssl-1_1-x64.dll文件的时间戳不一致,则将

D:\anaconda\DLLs\目录下的libssl-1_1-x64.dll文件复制到D:\anaconda\Library\bin目录下;

(2)pip安装超时错误

pip install opencv-contrib-python

出现安装超时错误

解决方法

pip --default-timeout=100 install opencv-contrib-python

 

 

 

 

你可能感兴趣的:(图形图像处理,Python)