OSX software update - lessons learned

I recently updated to Tahoe (26.2) which also included new command line tools

Sync’d fork, pulled latest

ran pytest and got segmentation faults all over the place

finally occurred to me that I might want to reset the environment

conda deactivate

conda remove --name tbp.monty --all

softwareupdate --install-rosetta

conda env create -f environment_arm64.yml --subdir=osx-64

conda init

conda activate tbp.monty

conda config --env --set subdir osx-64

psytest

Back in business.

4 Likes

Oh interesting. I haven’t updated yet, but thank you for the pointer to conda recreation being needed.

FYI I am on Tahoe 26.2 and I haven’t had to re-create my conda environment…. I’m glad it fixed the issue, though!

1 Like