I have an M1 MacBook using conda through miniforge3.
I want to use some packages not built for ARM (ifcopenshell, pythonocc-core). Mixing channels (conda-forge/osx-64
and conda-forge/osx-arm
) often does not work reliably.
How do I tell conda/mamba to have an environment only using x64? I don't want to install osx-64 conda in parallel.
--env
to make that work only for that env. Otherwise it's a global setting.conda config --env --set subdir osx-64
– Montez