pycharm+opencv

最近在学习数字图像处理,需要安装环境pycharm+opencv

之前下载过pycharm,所以只需要安装配置opencv

按照网上的提示

setting-->project-->python interpreter-->+

step1.-->manage repositories-->edit url:https://pypi.tuna.tsinghua.edu.cn/simple

step2.-->search opencv-python-->install package

然后,问题它就出现了

pycharm+opencv_第1张图片

看提示,是pip版本不匹配

好像python的版本与pip的版本需要匹配,我直接将pip更新到了最新版本,但于事无补(版本匹配的问题哪天有精力了再查吧。。)

。。。

后来,我直接cmd-->pip install --user --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ opencv-python(上图中executed command内容),它就下载好了。。。

测试一下

import cv2 as cv

src = cv.imread("E:/DELL/Desktop/test.jpg")
cv.namedWindow("input image", cv.WINDOW_AUTOSIZE)
cv.imshow("input image", src)
cv.waitKey(0)
cv.destroyAllWindows()
print("hi python")

可以运行

就这样吧

你可能感兴趣的:(python,pycharm,图像处理)