I am attempting to remove all of the installed \"pyobjc-framework\"-prefixed packages. I have tried the following:
% pip freeze | grep pyobjc-framework | xar
Redirect the grep output to a new file and run.
pip uninstall -r
works I think.
pip freeze | grep pyobjc > packages_to_remove.txt sudo pip uninstall -y -r packages_to_remove.txt