How to default Python3.8 on my Mac using Homebrew?
Here is the solution: If existing symlinks belong to python 3.7 you should unlink them: brew unlink python Basically all you need to do: brew link –force [email protected] OR force the link and overwrite all conflicting files: brew link –force –overwrite [email protected] OR if needed list all files that would be deleted: brew link –overwrite … Read more