Error installing opencv

You need to install opencv on jupyter

On my interpreter via pip, I calmly did it.

But there are problems with jupyter.

conda install opencv-python it doesn't work.

conda install -c conda-forge opencv - not working

Writes

Solving environment: failed with initial frozen solve. Retrying with flexible solve.

I tried to download it via Navigator, but it starts loading endlessly.

Tried the methods

conda env create - name opencv

But writes

usage: conda-env-script.py [-h] {create,export,list,remove,update,config} ...
conda-env-script.py: error: unrecognized arguments: name opencv

After crawling all over the Internet, I just spent a bunch of hours searching for information and I start cursing the one the fact that I accidentally came across this article here it is

Author: shalor1k, 2020-08-24

1 answers

Try one of these:

conda install -c conda-forge opencv
conda install -c conda-forge/label/gcc7 opencv
conda install -c conda-forge/label/broken opencv
conda install -c conda-forge/label/cf201901 opencv


conda install -c conda-forge/label/cf202003 opencv
 0
Author: Jollu Edvin, 2020-08-25 00:23:07