解决xfeatures2d问题

报错:AttributeError: module 'cv2.cv2' has no attribute 'xfeatures2d'

1.解决方法

(1)先卸载原先的opencv
         pip uninstall opencv-python
(2)接着安装3.4.2版本的opencv和contrib包
         pip install opencv_python==3.4.2.16
         pip install opencv-contrib-python==3.4.2.16

2.在python中安装包出现Retrying

在python中安装包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))

死活就是安装不上,总是说出错,其实就是说连接超时,下载不了安装包,我这里也没有科学上网的工具,经过多方百度,找到了办法
通过几次pip的使用,对于默认的pip源的速度实在无法忍受,于是便搜集了一些国内的pip源,如下:

阿里云 http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(douban) http://pypi.douban.com/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
但是经过网上给的方法进行安装,还是出现错误:

主要意思就是位于pypi.douban.com的存储库不是受信任的或安全的主机,正在被忽略。
要求使用“–trusted host pypi.douban.com”允许此警告。

所以最终的解决办法:pip install keras -i http://pypi.douban.com/simple --trusted-host pypi.douban.com(其中的keras是你需要下载的,根据自己需求自行更改)

原文链接1:https://www.jianshu.com/p/3ebf83add1a1

原文链接2:https://blog.csdn.net/lsf_007/article/details/87931823

你可能感兴趣的:(Python,python)