Comment installer OpenCV dans Anaconda, cahier Jupyter
#First create a new enviorment :
conda create -n opencv
#then :
conda activate opencv
#then:
conda install -c anaconda opencv
ParthRangarajan