Completely uninstall Python 3 on Mac
Removing the app does not completely uninstall that version of Python. You will need to remove the framework directories and their symbolic links. Deleting the frameworks sudo rm -rf /Library/Frameworks/Python.framework/Versions/[version number] replacing [version number] with 3.10 in your case. Removing symbolic links To list the broken symbolic links. ls -l /usr/local/bin | grep ‘../Library/Frameworks/Python.framework/Versions/[version number]’ … Read more