Bootstrap

解决pycharm下载opencv-python

问题描述

在pycharm下载opencv-python的时候出现 Read timed out.超时的现象

 pip install opencv-python

在这里插入图片描述
那我们换成清华镜源

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

在这里插入图片描述

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn opencv-python

好了
import cv2没有报错了
在这里插入图片描述
或者直接命令行输入

pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple/
;