pycharm安装“cv2”踩过的坑

1.在pycharm始终无法安装opencv的包,最后改为在电脑啊终端安装

pip install opencv-contrib-python
pip install opencv-python

2.安装慢、找不到包:更换源为清华源 

https://pypi.tuna.tsinghua.edu.cn/simple

3.终端安装成功后仍提示报错“no module named cv2“问题

解决方法:https://blog.csdn.net/SpadgerZ/article/details/108930960

其他问题:

1.报错:WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

解决方法:https://blog.csdn.net/qq_44845794/article/details/107554809

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