I was provided with an environment.ubuntu.yml
file to be able to create a conda environment. However, running conda create env --file environment.ubuntu.y
In my case, I had replaced some of the build versions (the ...=he4413a7_1000
part) as the ones in the original file had been relabelled as broken
on conda-forge
. However, even though the version number hadn't changed for these dependencies, their subdependencies had changed, causing all these conflicts. The bottom line is: don't mess with dependencies manually.
I solved the problem by keeping the original build version specifications, and adding conda-forge/labels/broken
to the channels
part of the .yml
file.