Fix ‘Solving environment: failed with initial frozen solve. Retrying with flexible solve.’

Jiradett  Kerdsri
1 min readOct 17, 2019

--

I got this error while installing OpenCV on Anaconda.

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

What I did to fix it was running create environment with this command:

conda create --name myenv
conda activate myenv

Then I can run

conda install -c conda-forge opencv

--

--