conda install opencv-python一直报错,显示no module named cv2


问题描述

conda install opencv-python一直报错,显示no module named cv2


原因分析:

因为没有找到合适的源,也有可能是conda不能安装,但是pip可以


解决方案:

方法一:添加清华源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/peterjc123/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/


方法二:(亲测有用)

把conda换成pip

pip install opencv-python

方法三:添加pytorch官方的源

conda install -c conda-forge opencv-python

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