Hi, sorry but I can't seem to be able to create new conda envs after upgrading from macOS 11 to macOS 12. Is this an issue that others have been having or do I need to reinstall Miniforge?
Thx
Hi, sorry but I can't seem to be able to create new conda envs after upgrading from macOS 11 to macOS 12. Is this an issue that others have been having or do I need to reinstall Miniforge?
Thx
Hi Alex1075,
What commands are you running?
A couple of things you can try:
conda create --name py38 python=3.8
from conda base
this worked for me.conda pack
to save your existing environment. Install: conda install -c conda-forge conda-pack
, pack environment my_env
into out_name.tar.gz
: conda pack -n my_env -o out_name.tar.gz
. You can un-tar out_name.tar.gz
under freshly installed conda path ~/miniforge3/envs
Hope that helps!